Is this extension currently supported / works for phpBB 3.3?
What is the query so that users who create a post do not have to remember to mark the option that a message arrives?
To make notify on reply the default:
UPDATE phpbb_users SET user_notify = 1 WHERE user_type <> 2
would be that?
and That will make reply notification the default for new users?
For new registrations:
OPEN includes/functions_user.php
FIND
CODE: SELECT ALL
'user_notify' => 0,
REPLACE WITH
CODE: SELECT ALL
'user_notify' => 1
mention these issues in phpBB in your support subforum:
https://www.phpbb.com/customise/db/extension/autosubscribe/support/topic/220476
---SOLVED--
Is this extension currently supported / works for phpBB 3.3?
What is the query so that users who create a post do not have to remember to mark the option that a message arrives?
To make notify on reply the default:
UPDATE phpbb_users SET user_notify = 1 WHERE user_type <> 2
would be that?
and That will make reply notification the default for new users?
For new registrations:
OPEN includes/functions_user.php
FIND
CODE: SELECT ALL
'user_notify' => 0,
REPLACE WITH
CODE: SELECT ALL
'user_notify' => 1
mention these issues in phpBB in your support subforum:
https://www.phpbb.com/customise/db/extension/autosubscribe/support/topic/220476
---SOLVED--