MyBB Community Forums

Full Version: User email in profile by admin
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
is there anyway to see user email address in his/her profile by only admin.

as usually admin have to go to admin panel to see user email in user/groups.
thank you.
User email is outputted by default in member templates by {$memprofile['email']} variable.

But for making it viewable to admin only and that too without any plugin or core change, try this...

Open ACP -> Templates & styles -> Your template -> Member templates -> member_profile_adminoptions

Before </table> paste this...
<tr><td class="trow1">Email: {$memprofile['email']}</td></tr>

Email will then appear in Admin options sidebar in member profiles.
Thank you Kavin.
repped for it.