Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product Price


Guest

Recommended Posts

Posted

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

Posted

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 {

Posted

Oh.... and you must include 'products_price_status' in your database query :shock:

Posted

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

Posted

How can I be more explicit without developing the whole mod for you? :shock: .... perhaps there is a contribution that will do it?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...