MyBB Community Forums

Full Version: HI Friend@! NEED HELP PM!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi boss

i need help!

I want to disable one function in my forum!
the function is when a new member send or get a PM one copy of that PM goes to their email also!@

i want to disable this function as this function don;t match with my server requirement!

i want to disable this function i mean when a new member get or send a PM no email Notification should be gone!

HELP!@

FAISAL!
First run this query in phpMyAdmin:
UPDATE mybb_users SET pmnotify='no'
Then go to Admin CP --> Templates --> Modify / Delete --> *expand your template set* --> User CP Templates --> usercp_options
Find:
<tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="pmnotify" id="pmnotify" value="yes" {$pmnotifycheck} /></td>
<td><span class="smalltext"><label for="pmnotify">{$lang->pm_notify}</label></span></td>
</tr>
Replace with:
<input type="hidden" name="pmnotify" value="yes" />
This is the error when i try to run query!

[Image: 9CFDB022.png]

BUT THE SCREEN SHOOT OF INDEX OF _users is ;

[Image: F6078921.png]

IS ALL IS OK! OR What i need to do!

FAISAL!
Did you change "mybb" to "bg" in the query?

UPDATE bg_users SET pmnotify='no'

instead of

UPDATE mybb_users SET pmnotify='no'