The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
if comment author i...
 
Share:
Notifications
Clear all

[Solved] if comment author is admin add role class to "wpd-comment-wrap"

5 Posts
2 Users
0 Likes
857 Views
Posts: 2
Topic starter
(@inumedia)
New Member
Joined: 2 years ago

Hello

If the administrator comment his own post, it's displaying in "author" color in the template, so I wish to replace "wpd-blog-post_author" by "wpd-blog-administrator", for this specific case.

Any function to do it ? 

May be by doing something in Jquery based on the "wpd-tooltip" value ? 
But I don't know how doing this.

 

thanks

4 Replies
Asti
Posts: 7123
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

@inumedia,

If you want to replace the "Author" label with "Administrator" you can use the hook code below:

add_filter("wpdiscuz_author_title", function ($label, $comment) {
    global $post;
    if ($comment->user_id == $post->post_author) {
        $label = __("Administrator", "wpdiscuz");
    }
    return $label;
}, 10, 2);

Put the hook code in the WordPress active theme functions.php file. Helpful article: https://www.wpbeginner.com/plugins/how-to-easily-add-custom-code-in-wordpress-without-breaking-your-site/

Posts: 2
Topic starter
(@inumedia)
New Member
Joined: 2 years ago

Hi 

yes I already did that but the color behind stay as "author" color not as "administrator".

So i'm trying a hook to add the wpd-blog-administrator class if the label is equal to "Administrator"

2 Replies
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7123

@inumedia,

Please remove the code provided in the previous post and add this one: 

add_filter("wpdiscuz_author_title", function ($label, $comment) {
    global $post;
	$user = get_user_by('id', $comment->user_id);
    if ($comment->user_id == $post->post_author && is_array($user->roles) && in_array("administrator",$user->roles)) {
        $label = __("Administrator", "wpdiscuz");
    }
    return $label;
}, 10, 2);

Regarding the colour of the label, you'll be able to change it using custom CSS code with the next version of the wpDiscuz plugin (no ETA). Currently, there is no way to change the colour even with the js code. 

Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7123

@inumedia,

The new version is ready. 

Share: