Quote Originally Posted by ZenLova View Post
Also I added the following to includes\modules\product_listing.php to give you this look with the price displayed on the product listing page (ex. http://www.promo2sell.com/index.php?...ex&cPath=25_48)



// case 'PRODUCT_LIST_PRICE':
// $lc_price = zen_get_products_display_price($listing->fields['products_id']) . '<br />';
// $lc_align = 'right';
// $lc_text = $lc_price;
// I made some mod's below this
case 'PRODUCT_LIST_PRICE':
// $lc_price = zen_get_products_discount_price_qty((int)$_GET['products_id'],20000);
$lc_price = zen_get_products_discount_price_qty((int)$listing->fields['products_id'],20000);
$lc_price = number_format($lc_price, 2);
$lc_text='<b><font color="red">As low as: $' . $lc_price . '</font></b><br>';
When I add this to my product_listing.php file, it does nothing. When products are listed they still show like they used to - shows highest price, not lowest quantity discount price. The only file that seems to change anything in this area is the tpl_tabular_display.php file. But when I edit that it takes the price off entirely. Editing the product_listing.php file does nothing.

I was able to figure out how to display the chepest price in the product info. But when it comes to the product listing, I am lost. Any ideas?

Kindest Regards,
Brad