what bbpress role does the person have? if admin, and they see the ip address in replies, you could put the email under this using
add_action ('bbp_theme_after_reply_author_admin_details', 'rew_show_email') ;
function rew_show_email () {
$user_id_rew = bbp_get_reply_author_id () ;
$user_info_rew = get_userdata($user_id_rew);
$email = $user_info_rew->user_email;
echo 'Email: '.$email ;
}
put this in your functions file
https://codex.bbpress.org/functions-files-and-child-themes-explained/
Hi,
thanks for your reply. I will try this out shortly and see if it works.
Hi there, sorry it has taken so long to reply to this.
The code you gave me works but the email address overlaps with the text in the post.
Any idea how to fix that?
Thanks again
Hi, no need to reply to the last post, my administrator is happy will how it works.
Thx