Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Item discription Help Needed


jubes75

Recommended Posts

Hey:

 

Is there a way to delete the price from showing up in the item dicription. In the store I am setting up we have several pricing options and I can set them up in the attributes but for them to work properly I need to be able to get rid of the price in the dicription. That way customers don't get confused.

 

Thanks :)

 

Jubes

Link to comment
Share on other sites

In your admin panel, go to configuration>product display and set "display product price" to 0. Then you may need to go into product_info.php and comment out the following section of code:

 

	if ($new_price = tep_get_products_special_price($product_info['products_id'])) {
     $products_price = '<s>' . $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) . '</s> <span class="productSpecialPrice">' . $currencies->display_price($new_price, tep_get_tax_rate($product_info['products_tax_class_id'])) . '</span>';
   } else {
     $products_price = $currencies->display_price($product_info['products_price'], tep_get_tax_rate($product_info['products_tax_class_id']));
   }

 

I hope this helps :-)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...