Thank you.
Now I have another problem.
I have set in
configuration > my store the basis of product tax, and basis of shipping tax to "store", when adding product the cart shows the full price (tax included), when clicking to checkout, and selecting guest (haven't tested new or existing customer) the price is displayed without tax, and when going back to edit cart (shopping_cart.html) the price has changed and displays without tax.
The tax column is not displayed in the table
PHP Code:
<?php
// display tax info if exists
if ($display_tax_column) {
?>
<td class="cartTotalDisplay"><?php echo zen_display_tax_value($order->products[$i]['tax']); ?>%</td>
<?php
} // endif tax info display
?>
What do you think I messed up?
Bookmarks