Selene Posted October 11, 2005 Posted October 11, 2005 Newbie here. How do I remove: 1) the comment at the bottom that says "xx requests since Mon, Oct 10, 2005" ? 2) the comment under product descriptions that says "This product was added to our catalog on Monday 10 October, 2005." Thanks in advance for any assistance! Selene :huh:
wheeloftime Posted October 11, 2005 Posted October 11, 2005 Newbie here. How do I remove: 1) the comment at the bottom that says "xx requests since Mon, Oct 10, 2005" ? 2) the comment under product descriptions that says "This product was added to our catalog on Monday 10 October, 2005." Thanks in advance for any assistance! Selene :huh: 1) Edit your (catalog)/includes/footer.php by searching for <td align="right" class="footer"><?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?> </td> and replace that with <td align="right" class="footer"><?php // echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?></td> 2) Edit your (catalog)/product_info.php by searching for <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> and replace that with <td align="center" class="smallText"><?php // echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> This way you are only commenting it out and if you ever wish to have it back you can simply remove the //
Selene Posted October 12, 2005 Author Posted October 12, 2005 Thanks, Howard! Much appreciated. Selene
Recommended Posts
Archived
This topic is now archived and is closed to further replies.