Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Products Model?


tim_ver

Recommended Posts

I want to know how I change out the title Products Model: to Item Number and then have it displayed in listing details. As it is now it shows it like this: Blue Sapphire and Diamond Bracelet [DB001]

I want it to look like this: Blue Sapphire and Diamond Bracelet Item number: DB001

 

 

Thanks

Link to comment
Share on other sites

Edit catalog/product_info.php

 

Find

if (tep_not_null($product_info['products_model'])) {
 $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';

 

change to:

if (tep_not_null($product_info['products_model'])) {
 $products_name = $product_info['products_name'] . '<br><span class="smallText">Item Number: ' . $product_info['products_model'] . '</span>';

 

Tom

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...