The effects of alcohol on
sustanon 250 leucine for – real weight loss & bodybuilding benefits?
[Solved] wpdiscuz_comment_author does not work properly
How-to and Troubleshooting
(@sostenuto0606work1)
Active Member
Joined: 4 years ago
I can't change the comment author name with wpdiscuz_comment_author.
Do you know the cause?
Version 7.3.11
(@asti)
Illustrious Member
Joined: 8 years ago
Hi @sostenuto0606work1,
Please clarify a bit what kind of code have you used?
(@sostenuto0606work1)
Active Member
Joined: 4 years ago
Hello
Write to function.php
add_filter ("wpdiscuz_comment_author", function ($ authorName, $ comment) {
$ authorName = "Boss";
return $ authorName;
},10,2);
It doesn't change.
(@asti)
Joined: 8 years ago
Illustrious Member
Posts: 8191
Feb 21, 2022 9:51 am
@sostenuto0606work1,
First of all, please remove the extra spaces in the code. It should look:
add_filter ("wpdiscuz_comment_author", function ($authorName, $comment) {
$authorName = "Boss";
return $authorName;
},10,2);
Then navigate to Dashboard > wpDiscuz > Settings > General Settings tab, click on the "Purge comments and users caches" button, then delete other plugin caches as well and check again.
Don't forget to press Ctrl+F5 (twice) on the frontend before checking.
(@sostenuto0606work1)
Active Member
Joined: 4 years ago