By Sue Leiting on Saturday, 31 January 2015
Posted in Technical Issues
Replies 1
Likes 0
Views 737
Votes 0
Bloggers are not notified when comments are posted on their blog. My goal is to allow bloggers to moderate comments on their blog posts.

I have checked the ACL and I think I have everything set correctly.

Also, when a Super User makes a comment, I would like that to post automatically with no moderation. Is that possible?

Thank you!

Joomla 3.3.6
EasyBlog 3.9.19775
Hello Sue,

I am really sorry for the delay of this reply as it is a weekend for us here. When a comment is posted on a blog post and requires moderation, the emails would be sent to the site admins rather than the authors.

When a super user tries to post a comment, their comments would also be automatically be moderated but you can quickly change / alter this behavior by editing the file /components/com_easyblog/views/entry/view.ejax.php and at line 236 locate the codes below:


if( ($config->get( 'comment_moderatecomment') == 1) || ($my->id == 0 && $config->get( 'comment_moderateguestcomment') == 1) )


Replace it with,


if ((($config->get( 'comment_moderatecomment') == 1) || ($my->id == 0 && $config->get( 'comment_moderateguestcomment') == 1) ) && !EasyBlogHelper::isSiteAdmin())
·
Saturday, 31 January 2015 12:31
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post