VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: mark R on January 11, 2012, 20:42:36 PM

Title: Product Created Date on Browse Page
Post by: mark R on January 11, 2012, 20:42:36 PM
Hi All,

I am trying to get an image on browse/catagory page to show which a re new products.

But i am having problems with getting the created date on the browse page.
i did this on v1.1 but the vm2 files have changed alot.

any help would be much appreciated.

Thanks
Mark
Title: Re: Product Created Date on Browse Page
Post by: PRO on January 11, 2012, 21:25:26 PM
created_on   is the database field.

<?php echo $product->created_on ?>

you can access the product fields on the category page by doing $product->COLUMN_NAME

you can access anything thats in the product table on the product page by doing $this->product->COLUMN_NAME
Title: Re: Product Created Date on Browse Page
Post by: mark R on January 12, 2012, 20:59:01 PM
many thanks, works perfectly.

Cheers mark