mee901 Posted December 19, 2002 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.
Ajeh Posted December 19, 2002 Posted December 19, 2002 Edit /includes/classes/currencies.php Change the last function to return a ''
mee901 Posted December 19, 2002 Author 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.
mee901 Posted December 19, 2002 Author Posted December 19, 2002 ok, i got it i changed it like this, function display_price($products_price, $products_tax, $quantity = 1) { return ''; } }
Ajeh Posted December 20, 2002 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.
pdavis Posted December 21, 2002 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.
Ajeh Posted December 21, 2002 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.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.