Guest Posted February 13, 2008 Posted February 13, 2008 On my website when looking at any product, you can see the time and date that the item was entered into the catalog. I want to remove this so my customs cannot see when the items where added to my catalog. My site is: www.kapini.com Please help...
Guest Posted February 13, 2008 Posted February 13, 2008 To find the part you know it is in product_info.php so you look for the matching text in catalog/includes/languages/english/product_info.php. There you find define('TEXT_DATE_ADDED', 'This product was added to our catalog on %s.'); Then you go back to catalog/product_info.php and find the TEXT_DATE_ADDED part <?php } else { ?> <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> <?php } ?> Then comment it out such as this <?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?> by adding the //
Guest Posted February 13, 2008 Posted February 13, 2008 To find the part you know it is in product_info.php so you look for the matching text in catalog/includes/languages/english/product_info.php. There you find define('TEXT_DATE_ADDED', 'This product was added to our catalog on %s.'); Then you go back to catalog/product_info.php and find the TEXT_DATE_ADDED part <?php } else { ?> <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> <?php } ?> Then comment it out such as this <?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?> by adding the // I will give it a try this evening.. Thank you!
Guest Posted February 14, 2008 Posted February 14, 2008 I will give it a try this evening.. Thank you! Your the man! Thank you. :rolleyes:
Recommended Posts
Archived
This topic is now archived and is closed to further replies.