By Matt Binz on Wednesday, 04 January 2017
Posted in General
Replies 1
Likes 0
Views 117
Votes 0
When I look at scheduled blog posts in Easyblog, I'm seeing the date that the post was created and not the date that the post is scheduled for. Is there a setting that I have wrong? I've included a screenshot.
By default, it will show created date from the backend blog listing page, if you would like to show "published date", you can modify on this file -> JoomlaFolder/administrator/components/com_easyblog/themes/default/blogs/default.php


//LINE 206
<?php echo EB::date($row->created, true)->format(JText::_('DATE_FORMAT_LC1')); ?>

// Replace with
<?php echo EB::date($row->publish_up, true)->format(JText::_('DATE_FORMAT_LC1')); ?>


Hope this help.
·
Wednesday, 04 January 2017 10:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post