The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
[Solved] Color of username
How-to and Troubleshooting
(@orakel)
Estimable Member
Joined: 5 years ago
Hello friends
Since yesterday, i was trying to change the unsername color but find no way to do it.
All names are green, but because my theme style i would need red.
Here is an example: http://www.blueaustria.at/anschober-praesentiert-neues-coronagesetz/
Hopefully you can help me
Thanks in advance
Orakel
(@asti)
Illustrious Member
Joined: 8 years ago
(@orakel)
Estimable Member
Joined: 5 years ago
Thank you very much, i was in the wrong section
It works now but, how can i force the admin color, if the admin is the author (with another color)?
And show the label "Admin" instead of "author"
Orakel
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8195
Sep 04, 2020 8:37 am
@orakel,
It works now but, how can i force the admin color, if the admin is the author (with another color)?
This is designed to work in this way. If the post is admin made by it displays the post author label instead of admin.
We can only provide you a simple code that will allow you to change the phrase, but the color will be as it was chosen for the post author.
(@orakel)
Estimable Member
Joined: 5 years ago
Changing the phrase would be good for me because i set all colors to the same color
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8195
Sep 04, 2020 8:53 am
@orakel,
The code is provided below:
add_filter("wpdiscuz_author_title", function ($label, $comment) {
global $post;
if ($comment->user_id == $post->post_author) {
$label = __("Admin", "wpdiscuz");
}
return $label;
}, 10, 2);
Just put it in the active theme functions.php file.
(@orakel)
Estimable Member
Joined: 5 years ago
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8195
Sep 04, 2020 9:05 am
@orakel,
In case you want to say thank you !)
We'd really appreciate and be thankful if you leave a good review on plugin page. This is the best way to say thank you to this project and support team.
(@orakel)
Estimable Member
Joined: 5 years ago
No problem 😉
The review is posted
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8195
Sep 04, 2020 9:25 am
Thank you very much, Orakel!
(@orakel)
Estimable Member
Joined: 5 years ago
i put in the code at the end of functions.php
Could this be wrong, because i still see "Author" as label
Orakel