X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (https://forum.x-cart.com/forumdisplay.php?f=20)
-   -   Show List Price in Bestsellers (https://forum.x-cart.com/showthread.php?t=26375)

girlsbits 11-04-2006 04:10 PM

Show List Price in Bestsellers
 
Here is how to show the list price above the retail price in bestsellers.tpl.

Add the following code to modules/bestsellers.php:

Code:


foreach ($bestsellers as $key=>$value)
$bestsellers[$key]["list_price"]=func_query_first_cell("SELECT list_price from
$sql_tbl[products] WHERE productid='$value[productid]'");


just above $smarty->assign("bestsellers",$bestsellers);

Add the following code to skin1/modules/Bestsellers/bestsellers.tpl:

Code:


{if $bestsellers[num].list_price gt 0}<S>{include file="currency.tpl" value=$bestsellers[num].list_price}</S><br>{/if}


just above {$lng.lbl_our_price}: {include file="currency.tpl" value=$bestsellers[num].price}


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

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