I need to reconfigure the comments template so that comments are only visible to logged in users, and was wondering if I could get pointed in the right direction, as doing some searching I wasn’t able to find a direct answer.
Thank you.
Hayden
Hey Hayden!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
.comment-entry.post-entry {
display: none;
}
.logged-in .comment-entry.post-entry {
display: block !important;
}
Cheers!
Yigit
Perfect, thanks!