By Michael Zahariev on Tuesday, 23 February 2016
Posted in Technical Issues
Replies 3
Likes 0
Views 501
Votes 0
Hi

Is there a way that the site tags when there is a new comment, similar to like how there is a new post which is then marked no longer new after it is read.

I would like to do a style which indicates when there is a new comment in a post once it has been read. Right now it is just moved to the top but if someone comments after you read it there is no clear way of knowing that this is happened.

Is this tag already integrated as this is a generally forum thing? I may be missing it?

Also as a side note is there a ETA for the new version of discuss?
Hey there Michael!

I'm sorry, but that's not possible with the current version

However, this is a great idea! I'll try my best in telling the developers about this but they are a bit swamped at the moment. However, you can also suggest the idea here EasyDiscuss Voices. This will make it easier for them

As for the ETA on the newest version of EasyDiscuss, the alpha version will be released quite soon! Stay tuned for the announcement from our Marketing Team
·
Tuesday, 23 February 2016 16:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Could you possibly point me to the files in which i could use to hack this together. IE the file that generates the new comment - adds a new comment to the post.

and the file that fires when a post is read - how this is determined.
·
Wednesday, 02 March 2016 17:05
·
0 Likes
·
0 Votes
·
0 Comments
·
This following file is show the comment listing and the saving part :
JoomlaFolder\components\com_easydiscuss\themes\simplistic\post.reply.comments.php
- display a list of comment from the post

JoomlaFolder\components\com_easydiscuss\views\comment\view.ajax.php
- comment saving part

How the post 'NEW' status work :
JoomlaFolder\components\com_easydiscuss\themes\simplistic\frontpage.post.php
- This file will display the frontend listing and determined which post that current user still haven't read yet.
- The system will check from this table -> #__discuss_users -> post_read column

JoomlaFolder\administrator\components\com_easydiscuss\tables\profile.php (read function)
- will update which post already read and store in this table -> #__discuss_users -> post_read column

Hope this will help.
·
Wednesday, 02 March 2016 19:45
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post