I'm using the blog module and I need to get a count of all the comments that have been moderated/approved. I'm currently using $Comments.Count but that counts all comments not the just the moderated comments. Does anyone know how i can count just the moderated comments?
We've moved the forum!
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
SOLVED!
add this to BlogEntry.php
public function getApprovedComments(){
return $this->Comments('Comment.Moderated = 1');
}
I'd like to add for clarity that you now need to call ApprovedComments in your template.