Jump to content

[SOLVED] Hide Subtotal and Estimated Sales TAX in shopping cart


Recommended Posts

  • 2 weeks later...

I found this, but I've doen the following with prestashop cart and the themes cart and it still doesn't work.

 

 

Sure For 1.4.9 go to themes/shoppingcart.tpl and edit then delete or comment out the following lines.

To comment out the line place this before<!-- and this after --> the following code starts at line 169.

(I currently do not have a 1.4.9 site to test on so by the code this should work)

 

 

<!-- {if $use_taxes}

<tr class="cart_total_price">

<td colspan="6">

{if $display_tax_label}

{l s='Total (tax excl.):'}

{else}

{l s='Subtotal:'}

{/if}

</td>

<td class="price" id="total_price_without_tax">{displayPrice price=$total_price_without_tax}</td>

</tr>

<tr class="cart_total_tax">

<td colspan="6">

{if $display_tax_label}

{l s='Total tax:'}

{else}

{l s='Estimated Sales Tax:'}

{/if}

</td>

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

</tr>

<tr class="cart_total_price">

<td colspan="6">

{if $display_tax_label}

{l s='Total (tax incl.):'}

{else}

{l s='Total:'}

{/if}

</td>

<td class="price" id="total_price">{displayPrice price=$total_price}</td>

</tr> -->

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...