ljh23 Posted July 2, 2005 Posted July 2, 2005 I understand that the What's New contribution displays your items by the date they are added. Does anyone know if there is a way to stop this date from showing up to my customers? I have removed the dates from my items when they display in the catalog, but the date still shows if you access the item through the What's New box. Any suggestions would be greatly appreciated!!! Thanks! Quote
Wendy James Posted July 2, 2005 Posted July 2, 2005 open catalog/products_new.php look for <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_DATE_ADDED . ' ' . tep_date_long($products_new['products_date_added']) . '<br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> change it to <td valign="top" class="main"><?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products_new['products_id']) . '"><b><u>' . $products_new['products_name'] . '</u></b></a><br>' . TEXT_MANUFACTURER . ' ' . $products_new['manufacturers_name'] . '<br><br>' . TEXT_PRICE . ' ' . $products_price; ?></td> Your line may not be exact with the <td></td> because I have altered the code on my page but you should be able to figure it out =) Quote Wendy James Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.