View Single Post
  #3  
Old 09-04-2007, 07:54 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: Date Added Displayed on Product details?

1) For displaying on the main product page...

In skin1/customer/main/product.tpl

Add...

Code:
Added: {$product.add_date|date_format:"%d-%m-%Y"}

You could show the time also...

Code:
Added: {$product.add_date|date_format:"%d-%m-%Y %H:%M:%S"}

2) For displaying on your productS pages...

In skin1/customer/main/products.tpl

OR, if displaying products in columns...

In skin1/customer/main/products_t.tpl

Add...

Code:
Added: {$products[product].add_date|date_format:"%d-%m-%Y"}

---

For US date format, use...

Code:
"%m-%d-%Y"
__________________
xcartmods.co.uk
Reply With Quote