By Hideto on Thursday, 08 June 2017
Posted in Technical Issues
Likes 0
Views 402
Votes 0
Hello,

Currently email template for new blog post notification includes the "Created date".
But this is inconvenient when scheduled post is automatically published.

It should be "Published date", instead of "Created date".


Will you be able to fix it?

Thanks,
Rika
Hi there,

Thanks for the input i have fixed this internally and this fixes will be included on our next release version, currently, you can go to this file .../administrator/components/com_easyblog/includes/post/post.php and change to codes provided below.

//line 2905
//current code
'blogDate' => $this->getCreationDate()->format(JText::_('DATE_FORMAT_LC')),

//change to this code
'blogDate' => $this->getPublishDate()->format(JText::_('DATE_FORMAT_LC')),



Please give it a try and see how it goes
·
Thursday, 08 June 2017 11:30
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Warith,

I modified the file and tested with scheduled posting, and received the notification with published date successfully.
Thank you!
·
Friday, 09 June 2017 09:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

You are most welcome. Glad to hear that your issue has been resolved now.

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.
·
Friday, 09 June 2017 10:03
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post