Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product pricing


Rowdy Roy

Recommended Posts

My products are sold in different volume quantity, i.e. 12 oz and 16 oz. When a customer is viewing a product priced at 12 oz - $6.95 and clicks on the 16 oz. of same product the price shows an "add amount" ($1.80). Is there a way to give each volume quantity a whole price to appear instead of an "added amount"? Thanks for the help.

Don Harbour

Rowdy Roy Seasoning

Maumelle, AR USA

Link to comment
Share on other sites

  • 3 weeks later...

Hi Roy

Did you ever get any help on this or find out if you can do it? I have only just this week started to use oscom and I have different sizes at different prices too and I think the customers will be confused with the plus business, the only thing I thought to do was to write something in the description but we all know how stupid the gen pub can be at times lol!

Link to comment
Share on other sites

My products are sold in different volume quantity, i.e. 12 oz and 16 oz. When a customer is viewing a product priced at 12 oz - $6.95 and clicks on the 16 oz. of same product the price shows an "add amount" ($1.80). Is there a way to give each volume quantity a whole price to appear instead of an "added amount"? Thanks for the help.

 

The only thing you can do is make 2 listings 1 with the item at the 12oz price and one with the item at the 16oz price

Link to comment
Share on other sites

The only thing you can do is make 2 listings 1 with the item at the 12oz price and one with the item at the 16oz price

Not true ;-) To accomplish this you just have to add the product price and the price increase together. Open product_info.php and change this line of code:

 

$products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options['price_prefix'] . $currencies->display_price($products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';

 

 

to this:

 

$products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $currencies->display_price( $product_info['products_price'] + $products_options['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') ';

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...