X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Show VAT Exempt (https://forum.x-cart.com/showthread.php?t=43993)

Mistic 12-02-2008 04:10 AM

Show VAT Exempt
 
Hi, I have tried to edit the products.tpl to show '(VAT Exempt)' on items that don't have VAT. I tried changing this

{if $products[product].taxes}
<br />
<div class="PListTaxBox">{include file="customer/main/taxed_price.tpl" taxes=$products[product].taxes}</div>
{/if}

to

{if $products[product].taxes}
<br />
<div class="PListTaxBox">{include file="customer/main/taxed_price.tpl" taxes=$products[product].taxes}</div>
{else}
(VAT Exempt)
{/if}

it didn't work, I tried a couple of other things but decided I didn't understand exactly what is going on.

Any help appreciated.

Yurij 12-02-2008 05:28 AM

Re: Show VAT Exempt
 
Quote:

Originally Posted by Mistic
Hi, I have tried to edit the products.tpl to show '(VAT Exempt)' on items that don't have VAT. I tried changing this

{if $products[product].taxes}
<br />
<div class="PListTaxBox">{include file="customer/main/taxed_price.tpl" taxes=$products[product].taxes}</div>
{/if}

to

{if $products[product].taxes}
<br />
<div class="PListTaxBox">{include file="customer/main/taxed_price.tpl" taxes=$products[product].taxes}</div>
{else}
(VAT Exempt)
{/if}

it didn't work, I tried a couple of other things but decided I didn't understand exactly what is going on.

Any help appreciated.


Try used field "taxed_price"

Mistic 12-05-2008 09:03 AM

Re: Show VAT Exempt
 
Hi Yurij, thanks for the reply, I tried this

{if $products[product].taxes}
<br />
<div class="PListTaxBox">{include file="customer/main/taxed_price.tpl" taxes=$products[product].taxes}</div>
{if $products[product].taxed_price eq "0"}
(VAT Exempt)
{/if}
{/if}

but it did not show anything, I tried a few other variations but none would show, am I getting it wrong?


All times are GMT -8. The time now is 03:22 PM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.