1
Xoops 2.0.13
Hi,
I'm trying to get notifications as per default working for every new user who registers on our website.
New users shouldn't have to select the checkbox for notifications first.
Right now I've got the SQL command below which I run before I enter any new event items. It basically sets the notification for every user it can find.
Which file would I be looking for and what do I need to change to get it working?
insert into `xoops_xoopsnotifications`
(not_modid, not_itemid, not_category, not_event, not_uid, not_mode)
select 2, 0, 'global', 'new_event', uid, 0
from xoops_users
Cheers,
wibni