Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How do I remove the Product Model Number From Description?


mmontalbano

Recommended Posts

Posted

Right under the title of my item in the description it shows the product model number in brackets ie [4] . I tried removing it through Admin>Configuration by changing the 1 to 0 but that doesn't do anything. Then I read you need to // it out in the product_info.php file but I can't tell exactly where to do that. Where in the file to you comment it out?

 

Any help would be appreciated.

 

Thanks

Matt

Posted

Around line 93 or so of product_info.php find

	  $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';

 

Change to

	  $products_name = $product_info['products_name'];// . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';

Archived

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

×
×
  • Create New...