X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (X-Cart 5) (https://forum.x-cart.com/forumdisplay.php?f=56)
-   -   How to hide price; if the item cost $0.00 (https://forum.x-cart.com/showthread.php?t=73983)

steewu 05-18-2016 01:40 PM

How to hide price; if the item cost $0.00
 
How to hide price; if the item cost $0.00

//skins/default/en/common/price_parts/price.tpl

<span class="price product-price">{formatPrice(getListPrice(),null,1):h}</span>

Thanks...

razortw 05-19-2016 04:25 AM

Re: How to hide price; if the item cost $0.00
 
Hello. Try this.
Code:

{if:getListPrice()>0}
<li><span class="price product-price">{formatPrice(getListPrice(),null,1):h}</span></li>
{end:}

Ideally all logic should be coded in PHP classes, not in templates, but this will work.


All times are GMT -8. The time now is 12:49 AM.

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