You’d better negotiate with the OP as he’s offering to pay for this.
That looks a nice extension but not what I want to do, here is what I want.kamaleon wrote: Wed May 01, 2019 8:15 pm This is a very interesting extension, I am also interested.
Check this extension too
https://www.phpbb.com/customise/db/exte ... extension/
Maybe Mark (the digests extension dev) could develop the extension you mention, I will reach out to him and ask him.
/includes/acp/acp_email.php
.Code: Select all
core.acp_email_modify_sql - Modify sql query to change the list of users the email is sent to
core.acp_email_send_before - Modify email template data before the emails are sent
core.acp_email_display - Modify custom email template data before we display the form
phpbb_users
and phpbb_user_group
tables just in case you screw up.&g=8
). In the following SQL I will assume the group_id is 8.Code: Select all
DELETE FROM phpbb_user_group where group_id = 8;
Code: Select all
INSERT INTO phpbb_user_group
SELECT 8, user_id, 0, 0 FROM phpbb_users WHERE user_lastpost_time < UNIX_TIMESTAMP() - (14 * 24 * 60 * 60) AND user_type IN (0, 3);
user_type IN (0, 1, 3)
.