Jump to content

Removing any reference to taxes in the summary


Recommended Posts

Hi

 

I have installed 1.5 and i am wanting to remove any reference to taxes in the summary - at the moment in the summary it is giving me a Total (tax excl:) and also a Total tax.

I would like to have these removed from the summary in the checkout as they have no relevance to my application of PS.

 

Any help is of course appreciated

 

 

Thank you

Link to comment
Share on other sites

  • 2 weeks later...
  • 3 months later...
  • 2 months later...

Sure For 1.5.3.1 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 165

 

 

<!-- {if $use_taxes}

<tr class="cart_total_price">

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

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

</tr>

<tr class="cart_total_tax">

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

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

</tr>

{/if} -->

 

 

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> -->

  • Like 1
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...