maccuda Posted June 25, 2009 Posted June 25, 2009 Can anyone tell me how i remove the "this products has been added to our catalog on ...." for products? thanks!
germ Posted June 25, 2009 Posted June 25, 2009 /catalog/product_info.php <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> Change to: <!-- commented out date added code <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> //--> Backup the file before making edits. You break it - You bought it... :blush: If I suggest you edit any file(s) make a backup first - I'm not perfect and neither are you. "Given enough impetus a parallelogramatically shaped projectile can egress a circular orifice." - Me - "Headers already sent" - The definitive help "Cannot redeclare ..." - How to find/fix it SSL Implementation Help Like this post? "Like" it again over there >
maccuda Posted June 29, 2009 Author Posted June 29, 2009 that was easy :-) thanks!! /catalog/product_info.php <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> Change to: <!-- commented out date added code <tr> <td align="center" class="smallText"><?php echo sprintf(TEXT_DATE_ADDED, tep_date_long($product_info['products_date_added'])); ?></td> </tr> //--> Backup the file before making edits. You break it - You bought it... :blush:
Recommended Posts
Archived
This topic is now archived and is closed to further replies.