mee901 Posted December 19, 2002 Share Posted December 19, 2002 i'd like not to display the price at all, even $0.00. it's for on-line catalog purpose only, not sale. anybody knows how to get rid of the price? thanks. Link to comment Share on other sites More sharing options...
Ajeh Posted December 19, 2002 Share Posted December 19, 2002 Edit /includes/classes/currencies.php Change the last function to return a '' Link to comment Share on other sites More sharing options...
mee901 Posted December 19, 2002 Author Share Posted December 19, 2002 i can read this like, function display_price($products_price, $products_tax, $quantity = 1) { return $this->format(tep_add_tax($products_price, $products_tax) * $quantity); } } please tell which one and how to. thanks. Link to comment Share on other sites More sharing options...
mee901 Posted December 19, 2002 Author Share Posted December 19, 2002 ok, i got it i changed it like this, function display_price($products_price, $products_tax, $quantity = 1) { return ''; } } Link to comment Share on other sites More sharing options...
Ajeh Posted December 20, 2002 Share Posted December 20, 2002 yeps ... that is all there is to it ... just return nothing and you see nothing. Now make all the buttons vanish and you are set. Link to comment Share on other sites More sharing options...
pdavis Posted December 21, 2002 Share Posted December 21, 2002 What is the "Display Product Price" setting for nder Admin->Configuration->Product Listing? I thought this would turn off the price display on the product page. Link to comment Share on other sites More sharing options...
Ajeh Posted December 21, 2002 Share Posted December 21, 2002 That only sets what is shown in the product listing not the product_info.php file or anywhere else in the store. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.