• Hi – I have added this plugin after setting up the group and set the default so that new members receive email notifications. My question is – how, as a admin, do I change the setting for existing users so that they don’t have to do it themselves and receive emails when a new activity / post is created on the group. I can’t find a setting for existing users and I tried to look at the database via PHPMyAdmin, bt wasn’t able to find out where and how this is set.

    Help appreciated

    Thanks

    Kevin

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • modostem

    (@modostem)

    Hi!
    I solved this problem executing the following sentence into PhpMyAdmin

    INSERT INTO wpt2_bpges_subscriptions
    (user_id, group_id, <code>type</code>)
    select wbgm.user_id, wbgm.group_id, 'sum' 
    from wpt2_bp_groups_members wbgm 
    where not exists ( select 1 from wpt2_bpges_subscriptions wbs where wbs.user_id = wbgm.user_id and wbs.group_id = wbgm.group_id)

    This force the subscription for all the users in all groups to weekly email summary.

    Thread Starter jetpackrabbit

    (@jetpackrabbit)

    Thanks @modostem – a great snippet.

    How do we turn this into a feature request?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Email Subscription Defaults’ is closed to new replies.