checkout shipping cost with tax included?

ThemeBurn SupportForumsOpenCart ThemesShoppica OpenCart Themecheckout shipping cost with tax included?

This topic has been marked as not resolved.

Hi,

I need to change my shop to show the shipping cost WITH TAX/VAT included in the price.

I have changed so that the products, payment fees and other shows with tax included. But shipping seems to be diffrent.

In the opencart forums I found a thread that describes how to modify the /catalog/view/theme/YOURTHEME/template/checkout/confirm.tpl

as your template coding is not the same I was wondering if you might could help me.

the thread say I need to do the following:

replace

<?php foreach ($totals as $total) { ?>
<tr>
  <td align="right"><?php echo $total['title']; ?></td>
  <td align="right"><?php echo $total['text']; ?></td>
</tr>
<?php } ?>

with:

<?php foreach ($totals as $total) { ?>
<?php if ($total['title'] != 'Tax:') { ?>
<tr>
  <td align="right"><?php echo $total['title']; ?></td>
  <td align="right"><?php echo $total['text']; ?></td>
</tr>
<?php } ?>
<?php } ?>

Just remember that for this bit of code to work, you have to change the word Tax in:
<?php if ($total['title'] != 'Tax:') { ?>

If this won’t help maybe you can spare me some coding that makes my shipping fee display WITH taxes during order confirm page.

September 11, 2011 at 9:56 pm #1647
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!
September 14, 2011 at 5:45 pm #1716
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.