Thank you for your reply! Yes, I meant the profile.
When logged-in users post to the forum, their names will show on topics automatically.
I want to delete the name from the Topic/Reply and make the forum completely anonymous.
Also, is it possible to set the “Name” field on Topic/Reply form for logged-in users?
Thank you.
untested (as I am on holiday without test server access), but try
add_filter ('bbp_get_reply_author_link' , 'rew_return_null' ) ;
add_filter ('bbp_get_topic_author_link' , 'rew_return_null' ) ;
add_filter ('bbp_get_author_link' , 'rew_return_null' ) ;
function rew_return_null () {
return ;
}
Put this in your child theme’s function file –
ie wp-content/themes/%your-theme-name%/functions.php
where %your-theme-name% is the name of your theme
or use
Code Snippets
Thank you for quick reply during the holidays!
It worked for deleting profile from Topic/Reply!
so leaves it where on the forum?
or what remaining issues do you have?
Is it possible to add a new ‘nickname’ input field for all users (logged-in/non-logged-in) and show the nickname instead of the deleted profile name?
Thank you.
yes, but beyond free help
Ok, Thank you very much!
I will be back if we really need the function.