jendter Posted December 16, 2012 Share Posted December 16, 2012 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? Link to comment Share on other sites More sharing options...
sddqshahid Posted December 17, 2012 Share Posted December 17, 2012 have you selected yes in Localization>Taxes - Tax options - Display tax in Cart. as my shop does shows tax on every step Link to comment Share on other sites More sharing options...
jendter Posted December 18, 2012 Author Share Posted December 18, 2012 Yes, I have that option set to Display Tax in Cart Link to comment Share on other sites More sharing options...
tdr170 Posted December 18, 2012 Share Posted December 18, 2012 (edited) 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 December 18, 2012 by tdr170 (see edit history) 4 Link to comment Share on other sites More sharing options...
jendter Posted December 20, 2012 Author Share Posted December 20, 2012 Thank you so much. The fix worked perfectly. Link to comment Share on other sites More sharing options...
my-name Posted December 23, 2012 Share Posted December 23, 2012 I have the same problem. The fix is good but shouldn't this be an option in prestashop rather than having to hard code it? Its the last time prior to confirmation the client will see the cart including the correctly calculated shipping costs. Link to comment Share on other sites More sharing options...
tdr170 Posted December 23, 2012 Share Posted December 23, 2012 I have posted this in Github so we will see if they add it to 1.5.3. Link to comment Share on other sites More sharing options...
carras Posted May 15, 2013 Share Posted May 15, 2013 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 More sharing options...
carras Posted May 15, 2013 Share Posted May 15, 2013 Well I just pasted it in line 167; so thanks a lot. Very useful. Link to comment Share on other sites More sharing options...
techfirestudio Posted June 28, 2013 Share Posted June 28, 2013 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 More sharing options...
Recommended Posts