Guest Posted April 18, 2006 Posted April 18, 2006 Ok, I've spent 3 days lurking around the board and cannot find the answer. I am trying to comment out the Model #'s (product_id) and the product description that shows up on the item(s) page. If anyone, somebody will please look at my site to see what I'm talking about and to guide me thru this, I would really appreciate it. I know i'm not crazy, i've looked in all product_info, new_products, products_new.... until I'm ready to pull my hair out because I know that it is right in front of me and i can't see it. :blush: Thanks for your help in advance. Trixie Cat Lingerie
Wendy James Posted April 18, 2006 Posted April 18, 2006 open product_info.php and 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 it to if (tep_not_null($manufacturer_info['manufacturers_name'])) { $products_name = $product_info['products_name']; } else { $products_name = $product_info['products_name']; } That will remove the model number. To not have a product description, just don't add one in admin. Or remove <p><?php echo stripslashes($product_info['products_description']); ?></p> on the product_info.php. That is for the products page. I would have to see the code calling the produc to help you on the index page. Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Guest Posted April 18, 2006 Posted April 18, 2006 thanks for the directions on removing the model number but i've already done that. I'm afraid I'm leading you in the wrong direction with my newbie babble. The numbers (product_id aka Model #) that I am looking at are on every product and are in numerical order. As far as the description goes.... It's only half of a description, the full version of it is on the product page, the other is in the catalog. Does anyone know how to hide/delete these 2 things... I would be most grateful. you can see what I'm talking about on the opening page of my shop. If I need to post code, please let me know, otherwise here's the link to the shop... trixiecat
Wendy James Posted April 19, 2006 Posted April 19, 2006 If you go into your admin under configuration then product listing you should be able to shut off the model #s so they do not show up. The description field will probably also be there. That is, if you are talking about the product listing page. Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.