We achieved this by doing the following in 1.3.7. The same code can be used in all files where displaying the lowest price is desired.
Code:
Filename : templates/tpl_product_info_display.php
Line #69 : //echo $one_time . ($flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
Line #70 : echo ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . $currencies->display_price(zen_get_products_discount_price_qty((int)$_GET['products_id'], 999999), zen_get_tax_rate($products_tax_class_id));
We used "999999" as the quantity for "zen_get_products_discount_price_qty" since no item in our store has a higher quantity discount than the value used.
Hope that helps someone.
We would love to see this as an option to show base price or lowest price in a future release of Zen Cart. hint hint
Bookmarks