Group Members Mail Plugin

Group Members Mail Plugin Install Statistics

0
100%
Today: 0 Yesterday: 0 All-time: 1,730 downloads
Group Members Mail Plugin Icon

Try plugin: Group Members Mail Plugin

We'll create fresh WordPress site with Group Members Mail Plugin installed. You have 20 minutes to test the plugin after that site we'll be deleted.

Takes ~10 seconds to install.

About Group Members Mail Plugin

Allows Buddypress group Mods to send email to all group members .

2


0


1


0


0

updated: 7 years ago
since: 7 years ago
author: alexhal

Description

Allows Buddypress group Mods to send email to all group members from group admin/manage section.
To enable E-mail members for mods simply put the code given below in your bp-groups-members-mail.php file in the end from wp-admin-> plugins-> editor :

add_filter('gmm_enable_for_mods','gmm_enabled_for_mods');
function gmm_enabled_for_mods(){
    return true;
}

By default this “E-Mail Members” section is available to mods and admin .
To change it a filter is available and you can change the access like this :
To restrict this option to admins only
add_filter(‘bp_gmm_auhority’,function(){
return ‘admin’;
});