Jump to content

Separate line for TAX amount not showing up on Payment page


Recommended Posts

I am using version 1.5.2 with the default theme. A Sale tax line is not displayed on the payment page. Sales tax is being added and calculated correctly but the line does not show. The sales tax line is showing on the summary page just not on the payment page. Any ideas?

post-444506-0-38950300-1355687729_thumb.jpg

post-444506-0-47491800-1355687734_thumb.jpg

Link to comment
Share on other sites

This is normal for the payment page in Prestashop, However I have posted a fix for this in another post.

I will post it here again for you.

 

Using your FTP program browse to themes/yourtheme and edit orderpayment.tpl and insert the following code at line 140 just above {if $total_shipping_tax_exc <= 0 && !isset($virtualCart)} this will add the tax line to the payment page in checkout.

 

 

{if $use_taxes}

<tr class="cart_summery_tax">

<td colspan="5">{l s='Total tax:'}</td>

<td colspan="2" class="price" id="total_tax">{displayPrice price=$total_tax}</td>

</tr>

{/if}

 

{if $total_shipping_tax_exc <= 0 && !isset($virtualCart)}

Edited by tdr170 (see edit history)
  • Like 4
Link to comment
Share on other sites

  • 4 months later...

Hi,

 

This code seen to be working on 1.5.4.1

 

I've done it but the line appear in the middle of product total and shipping total. How can I make it to be the last line? I work with prices without taxes.

 

Can you help me?

 

Thanks.

Link to comment
Share on other sites

  • 1 month later...

This is normal for the payment page in Prestashop, However I have posted a fix for this in another post.

I will post it here again for you.

 

Using your FTP program browse to themes/yourtheme and edit orderpayment.tpl and insert the following code at line 140 just above {if $total_shipping_tax_exc <= 0 && !isset($virtualCart)} this will add the tax line to the payment page in checkout.

 

 

{if $use_taxes}

<tr class="cart_summery_tax">

<td colspan="5">{l s='Total tax:'}</td>

<td colspan="2" class="price" id="total_tax">{displayPrice price=$total_tax}</td>

</tr>

{/if}

 

{if $total_shipping_tax_exc <= 0 && !isset($virtualCart)}

 

This worked wonders! Thanks so much!

I'm using Prestashop 1.5.4

Link to comment
Share on other sites

×
×
  • Create New...