MyBB Community Forums

Full Version: notificatons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hi how can i set the (Notify by email when new private message is received) ticked as default for all users on account settings?

any help will be great
Open "member_register" template, and find;
<input type="checkbox" class="checkbox" name="emailpmnotify" id="emailpmnotify" value="1" {$emailpmnotifycheck} />
and Change it into;
<input type="checkbox" class="checkbox" name="emailpmnotify" id="emailpmnotify" value="1" checked="checked" {$emailpmnotifycheck} />

Next, run the following query in phpmyadmin;
UPDATE `mybb_users` SET `pmnotify` = '1';

Make sure that your table prefix is mybb_
THANKS M8

its checked as default now for new users but its not changed the current members setting
(2012-05-22, 09:51 PM)Yaldaram Wrote: [ -> ]Next, run the following query in phpmyadmin;
UPDATE `mybb_users` SET `pmnotify` = '1';

Make sure that your table prefix is mybb_
done it and donr nothing m8

just done it again and its working now m8
thanks