ctobola Posted May 7, 2007 Share Posted May 7, 2007 I'm using EasyPopulate, so I need to have a model number for each product. However, I'd rather not show the model number to customers. (It would be nice to see it in the order info I receive.) How do I go about hiding this information? Thanks! -Cloy Link to comment Share on other sites More sharing options...
♥FWR Media Posted May 7, 2007 Share Posted May 7, 2007 I'm using EasyPopulate, so I need to have a model number for each product. However, I'd rather not show the model number to customers. (It would be nice to see it in the order info I receive.) How do I go about hiding this information? Thanks! -Cloy In 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>'; } else { $products_name = $product_info['products_name']; } Change to .. // REMOVING PRODUCTS MODEL // if (tep_not_null($product_info['products_model'])) { // $products_name = $product_info['products_name'] . '<br /><span class="smallText">[' . $product_info['products_model'] . ']</span>'; // } else { // $products_name = $product_info['products_name']; // } $products_name = $product_info['products_name']; // END REMOVING PRODUCTS MODEL Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.