By Markus Koerle on Monday, 12 December 2016
Posted in Technical Issues
Likes 0
Views 596
Votes 0
Hi there, I need to rebuild a complete forum site from an typo3 installation. This means I do create manually all post and set the date way back in the past. I could manage this within the database for the created and published date, but not for the date that is shown at the overview (see attached screnshot). Can anybody help me out there?

Tanks!

Markus
Hi Mark, thanks, great! That helped me a lot!

Markus
·
Friday, 16 December 2016 19:24
·
0 Likes
·
0 Votes
·
0 Comments
·
I am assuming this is the forums layout? You can edit the file /components/com_easydiscuss/themes/wireframe/forums/item.php and change line 86


<div class="ed-forum-item__meta"><?php echo ED::date()->toLapsed($post->lastupdate); ?></div>


With,


<div class="ed-forum-item__meta"><?php echo $post->getDateObject()->format(); ?></div>
·
Monday, 12 December 2016 21:38
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Markus, glad that your issues are resolved now
·
Friday, 16 December 2016 20:13
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post