MyBB Community Forums

Full Version: how creat email and pm link?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi friends

in the my forum / There are not email link in the a number of users profile


and there are not pm link in the some of them profiles


How i creat email and pm link for all users profiles?


Whether it have a specific guery?


Please advise me i need to solve this problem



Thank you very muchBlush[/align]

thank you i found a solution for my problem i should for show email and pm link for all user profles

I must acting of mybb_users of phpmyadmin and change allownotices filed number of 0 to 1

and change hideemail filed and change its number of 0 to 1
SQL query for removing hide eamil
UPDATE mybb_users SET hideemail=0 WHERE hideemail=1

SQL query to enable receiving PMs
UPDATE mybb_users SET receivepms=1 WHERE receivepms=0

further guidance : Common SQL queries and how to run them