Jump to content

[solved] How to remove a row in checkout (price without tax)?


Recommended Posts

open file:

themes / your_theme / shopping-cart.tpl

 

you've got there:

 

 

<tr class="cart_total_price">
<td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
</tr>

 

remove it / comment it

Link to comment
Share on other sites

open file:

themes / your_theme / shopping-cart.tpl

 

you've got there:

 

 

<tr class="cart_total_price">
<td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
</tr>

 

remove it / comment it

 

You mean delete the hole string?

 

<tr class="cart_total_price">

<td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>

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

</tr>

Link to comment
Share on other sites

if you want to remove the price without tax - my answer is: yes. Remove it :-)

 

if you don't want to remove it (maybe in the future you will want to show it) use comments: {* *}

 

{*
<tr class="cart_total_price">
<td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
</tr>
*}

Link to comment
Share on other sites

if you want to remove the price without tax - my answer is: yes. Remove it :-)

 

if you don't want to remove it (maybe in the future you will want to show it) use comments: {* *}

 

{*
<tr class="cart_total_price">
<td colspan="5">{if $display_tax_label}{l s='Total products (tax excl.)'}{else}{l s='Total products'}{/if}</td>
<td colspan="2" class="price" id="total_product">{displayPrice price=$total_products}</td>
</tr>
*}

 

Nope, its still there :-(

Link to comment
Share on other sites

YES!!

 

as you wish :-)

so the topic is now [solved]

 

you can also mark own thread as solved, read how to do it:

 

[sOLVED] Topic

 

If, after posting a topic, you find a solution to your problem, please indicate it in your post and describe the solution.

There is nothing more frustrating for users with the same issue who come across your post "all is good, I fixed it..." without an explanation of how to fix it.

 

Furthermore if you are the author of the topic for which a solution has been found, please edit your topic title to mark it as [sOLVED].

 

To mark a topic as [solved] :

- Edit the first post of your topic by clicking on the "Edit" button,

- Click on the "Use full editor" button,

- Add the "[solved]" string at the beginning of your topic title and click on the "Submit Modified Post" button.

 

 

Posters who do not abide by this (at the demand of the moderators or other users) will have their new topics closed until the problem has been resolved.

 

regards

Link to comment
Share on other sites

×
×
  • Create New...