I am using your CMS Module with Opencart v148. I am using it like a blog, so I would like my articles to be listed in order by date showing the newest articles on top. I saw your post showing how to sort them by date by changing article.php to
Code: Select all
$sort = 'a.date_added';
$sql .= " ORDER BY " . $sort;
Also, I can't find where to change the date format. Right now it is showing as: 2011-01-13 12:10:36
but I would like it to be listed as day,month,year.
Thank you in advance for your time.