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)
-   -   diplay price on products.tpl ? (https://forum.x-cart.com/showthread.php?t=3907)

iCARus 08-06-2003 11:54 PM

diplay price on products.tpl ?
 
Hello,

i dont like show "enter your price" word in products.tpl.
I want see prices instead this word.

How can i make this ?

Thanks,

iCARus

elabdesigns 08-07-2003 04:35 AM

Maybe this will help u
 
I am not sure what your needs are for this, but me personaly I needed to display multiple pricing where "enter your price" was shown. So I just found the code that looks something like this:

Code:

[product].vat gt "0"}, {$lng.lbl_including_vat} {$products[product].vat}%{/if}
{else}
<font class=ProductPrice>{$lng.lbl_enter_your_price}
</font>


And added another if statement that looks for the category. This way I can display different text pricing for the category the customer is in.

For ex. if they are in the cars category ($cat eg 10} and I want the "enter your price" to show the different set pricing I just add them in the code.

Code:

[product].vat gt "0"}, {$lng.lbl_including_vat} {$products[product].vat}%{/if}
{else}
{* <font class=ProductPrice>{$lng.lbl_enter_your_price} *}
{if $cat eq 10}
26oz Jar ($20.99) | 16oz Jar ($16.99) | Tea Lights ($6.99)
Votive ($1.50) | Tart ($1.00){/if}
</font>


And for multiple pricing for more categories then just add an else if statement, remembering to close each if.

Code:

[product].vat gt "0"}, {$lng.lbl_including_vat} {$products[product].vat}%{/if}
{else}
{* <font class=ProductPrice>{$lng.lbl_enter_your_price} *}
{if $cat eq 10}
26oz Jar ($20.99) | 16oz Jar ($16.99) | Tea Lights ($6.99)
Votive ($1.50) | Tart ($1.00)

{else if $cat eq 12}

22oz. Jar ($19.99) | 14.5oz Jar (15.99) | Tea Lights ($6.99)
{/if}{/if}
</font>


I hope this helps you understand. PM me if you have any questions. :wink:

Jay


All times are GMT -8. The time now is 06:03 AM.

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