The_Dive_Master Posted December 5, 2003 Share Posted December 5, 2003 How can I get the shop so far to display "Preise on request. Please contact us @..." when I enter a 0.00 price in the article. This coud also be a image or so. Best is a editable Text. Can someone PLEASE help me? Link to comment Share on other sites More sharing options...
Guest Posted December 5, 2003 Share Posted December 5, 2003 In catalog/includes/classes/currencies.php, at the very end, change: function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity); } } to: function display_price($products_price, $products_tax, $quantity = 1) { if($products_price == '0') { return 'Price on request - Please <a href="' . tep_href_link(FILENAME_CONTACT_US) . '">contact us</a>'; } else { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity); } } } Link to comment Share on other sites More sharing options...
The_Dive_Master Posted December 5, 2003 Author Share Posted December 5, 2003 Thanks very much. This was what I needed. :D Link to comment Share on other sites More sharing options...
Guest Posted December 5, 2003 Share Posted December 5, 2003 No problem. Its a bit ugly in product_info.php, so you may need to change CSS class used there. Matti Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.