Guest Posted July 3, 2003 Posted July 3, 2003 Hey Guys, Does anybodyknow how you can the price show up for some products and not for others in the product_info.php file ? Thanks alot
Guest Posted July 3, 2003 Posted July 3, 2003 You must create a column in the products table so you can flag the product to not display its price...eg. products_price_status .... then something like this before your other price display options: if ($product_info_values['products_price_status']== '1') { $products_price = ''; } else {
Guest Posted July 3, 2003 Posted July 3, 2003 Oh.... and you must include 'products_price_status' in your database query :shock:
Guest Posted July 3, 2003 Posted July 3, 2003 Hi There, Thansk for your response but you totally lost me there.... I know a bit of PHP but not much.. Could you be a little more descriptive? Thanks
Guest Posted July 3, 2003 Posted July 3, 2003 How can I be more explicit without developing the whole mod for you? :shock: .... perhaps there is a contribution that will do it?
Recommended Posts
Archived
This topic is now archived and is closed to further replies.