I'm working in zen-cart and my issue is, in check out page there comes a section called shopping cart contents which displays the items name and content and total amount.

Later there come the sub-total section, parcel, tax and total section

I'm not sure from where these values come from and how can I edit or configure them.

Please help

link|improve this question
feedback

1 Answer

Are you wondering about the labels for subtotal, tax, etc. or the values?

The labels are controlled by files in includes/languages/english/modules/order_total. For instance, the label "Sub-Total" is in ot_subtotal.php in that directory.

You can change these by creating a directory with the name of your template in includes/languages/english/modules/order_total, copying the relevant files in, and editing them there.

The values are computed by files in includes/modules/order_total. But the values these files return are set according to flags and values you set in your admin panel, such as tax rate and so forth.

link|improve this answer
Thats one of the issue Scott, my major issue is, in live site the sub-total labels and the figures I get is Sub-Total: $254.10 Total Shipping Charges (18.38 lbs total weight): $16.47 Sub-Total before taxes: $270.57 HILLSBOROUGH County Tax (1%): $2.71 FL State Tax (6%): $16.23 Total Sales Tax (after discount if any): $18.94 Total: $289.51 – Raj May 11 '11 at 5:55
This looks fine to me. What's the problem? – Scott Wilson May 11 '11 at 7:34
See Scott in dev site there are missing fields like Sub-Total before taxes: $270.57, HILLSBOROUGH County Tax (1%): $2.71, FL State Tax (6%): $16.23 and Total Sales Tax (after discount if any): $18.94 from live site I'm not sure from where they got it from. – Raj May 11 '11 at 8:07
Go to admin->locations/taxes->tax rates on both sites and compare. – Scott Wilson May 11 '11 at 10:27
I did that Scott both sites have no data to compare. – Raj May 11 '11 at 10:59
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.