The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
how to display some...
 
Share:
Notifications
Clear all

Limited Support

Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.

 

Question [Solved] how to display some phrases when comment section is hidden.

7 Posts
2 Users
1 Reactions
957 Views
Posts: 5
Topic starter
(@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?

 
Topic Tags
6 Replies
Asti
Posts: 8075
 Asti
Support
(@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.  

Posts: 5
Topic starter
(@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.

4 Replies
Asti
 Asti
Support
(@asti)
Joined: 8 years ago

Illustrious Member
Posts: 8075

@lightlaw,

In your currently active theme functions.php file. 

(@lightlaw)
Joined: 2 years ago

Active Member
Posts: 5

@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
 Asti
Support
(@asti)
Joined: 8 years ago

Illustrious Member
Posts: 8075

@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

@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);
 
Share: