kendragb Posted May 4, 2005 Share Posted May 4, 2005 Hi, I have been trying to figure out how to remove the "this product was added to our catalog on..." from showing up on my website and I can't seem to figure out how to do it. Any advice would be GREAT! Thanks :D Link to comment Share on other sites More sharing options...
Iggy Posted May 4, 2005 Share Posted May 4, 2005 Open up product_info.php. Make a backup. Search for "date" and identify the line that calls the date added. Delete it! Iggy Everything's funny but nothing's a joke... Link to comment Share on other sites More sharing options...
kendragb Posted May 4, 2005 Author Share Posted May 4, 2005 Hi,I have been trying to figure out how to remove the "this product was added to our catalog on..." from showing up on my website and I can't seem to figure out how to do it. Any advice would be GREAT! Thanks :D <{POST_SNAPBACK}> Hi Iggy, Thanks so much for the fast response. Unfortunately, I don't know how to get to the product info page that you are talking about. Is it ubder the Catalog part of my site? Or what would be the entire URL that I would type in after my website? .com/..........? Thanks again. :rolleyes: Kendra Link to comment Share on other sites More sharing options...
Wendy James Posted May 4, 2005 Share Posted May 4, 2005 Use an ftp program and log into your host. go to your catalog folder find the product_info.php and download it to your computer (it will be in your main catalog folder) look for the lines <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> and delete them or change them to <tr> <td align="center" class="smallText"><?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> so it is still there but will not show up incase you want to have it there in the future Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep. Link to comment Share on other sites More sharing options...
kendragb Posted May 5, 2005 Author Share Posted May 5, 2005 Use an ftp program and log into your host.go to your catalog folder find the product_info.php and download it to your computer (it will be in your main catalog folder) look for the lines <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> and delete them or change them to <tr> <td align="center" class="smallText"><?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> so it is still there but will not show up incase you want to have it there in the future <{POST_SNAPBACK}> Hi Wendy, Thanks so much for the help!! Kendra :rolleyes: Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.