The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
Question [Solved] how to display some phrases when comment section is hidden.
How-to and Troubleshooting
(@lightlaw)
Active Member
Joined: 2 years ago
I've set Comment Form Settings to hide comment section for user roles, and it works fine.
But, I want to display something like below in that hidden section :
"You are not allowed to see the comments."
How can I do it?
(@asti)
Illustrious Member
Joined: 8 years ago
Hi,
You can use the wpdiscuz_before_comments hook and display messsage. Just check if the current user has permission to view comments.
(@lightlaw)
Active Member
Joined: 2 years ago
Thank you Asti.
Where should I insert the wpdiscuz_before_comments hook?
Please understand that I am a beginner in coding.
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8188
Feb 02, 2024 2:26 pm
@lightlaw,
In your currently active theme functions.php file.
(@lightlaw)
Joined: 2 years ago
Active Member
Posts: 5
Feb 06, 2024 2:56 am
@asti Thanks, but custom messages are displayed not only to unpermitted users, but also to permitted users. I want to display custom messages only to unpermitted users.
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8188
Feb 06, 2024 10:43 am
@lightlaw,
Just check if the current user has permission to view comments.
The provided code is just an example. You should customize it to suit your needs and ensure it functions as desired.
(@lightlaw)
Joined: 2 years ago
Active Member
Posts: 5
Feb 08, 2024 1:39 am
@asti Thank you. I solved it by adding the following code.
add_action("wpdiscuz_before_comments", function ($post, $currentUser, $commentsCount) {
$user = wp_get_current_user();
$user_roles = $user->roles;
if (in_array(‘role01', $user_roles) || in_array(‘role02', $user_roles)) {
echo "Custom Message";
}
}, 10, 3);