SOLVED - Hide or Delete past events
Design and Skin Customization
Ok I tested with pulling a field into my home page
I am using this code
{jrCore_list module="jrEvent" search="event_date >= `$smarty.now`" order_by="event_date asc" limit=10}
Now i went back to Nova skins concert.tpl file and it is has this code for upcoming concerts
{assign var="newclass" value="p_choice_active"}
{assign var="order_by" value="event_date asc"}
So the nova skin is using event_date asc for the value and not from todays date
How would I change that?
That would fix the problem
Tried adding this
{assign var="order_by" value="event_date >= `$smarty.now` asc"}
error: invalid order direction received for event_date - must be one of: ASC, DESC, NUMERICAL_ASC, NUMERICAL_DESC, RANDOM
updated by @madc: 03/03/14 06:46:12AM