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.
How-to and Troubleshooting
5
Posts
2
Users
0
Reactions
1,138
Views
Feb 20, 2022 5:29 am
I can't change the comment author name with wpdiscuz_comment_author.
Do you know the cause?
Version 7.3.11
4 Replies
Feb 21, 2022 9:24 am
Hello
Write to function.php
add_filter ("wpdiscuz_comment_author", function ($ authorName, $ comment) {
$ authorName = "Boss";
return $ authorName;
},10,2);
It doesn't change.
Feb 22, 2022 10:15 am
solved.
thank you.