Page 1 of 1

All Products contain the new Image for ever [FIXED]

Posted: Thu Apr 18, 2013 5:46 am
by mota_nginya
Gents,

Does anyone in here know the property that controls the "new" image is placed on products when they are newly added in the shop? Also how long does it take for that to disappear? I can see a css class "new_badge" ....


Thanks!

Re: All Products contain the new Image for ever

Posted: Thu Apr 18, 2013 8:48 am
by phillipuniverse
The 'new' there is somewhat of a misnomer. The logic for displaying that is in productListItem.html:

Code: Select all

<div th:if="*{featuredProduct}" class="new_badge">New!</div>


So if the 'featuredProduct' flag is set to true you'll get that badge.

Re: All Products contain the new Image for ever

Posted: Thu Apr 18, 2013 8:04 pm
by mota_nginya
Thanks a bunch, that was extremely helpful.