tim_ver Posted August 1, 2006 Share Posted August 1, 2006 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 More sharing options...
Guest Posted August 1, 2006 Share Posted August 1, 2006 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 More sharing options...
tim_ver Posted August 1, 2006 Author Share Posted August 1, 2006 Thanks much, Is there a good mod to do auto numbering? I want to have it like this: Jewlery: JWXXXXX Gifts:GTXXXXX The X's are numbers and would be auto assigned. Thanks Link to comment Share on other sites More sharing options...
tim_ver Posted August 1, 2006 Author Share Posted August 1, 2006 ? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.