Skip to content

Instantly share code, notes, and snippets.

@rohmann
Last active November 30, 2021 22:16
Show Gist options
  • Save rohmann/6151699 to your computer and use it in GitHub Desktop.
Save rohmann/6151699 to your computer and use it in GitHub Desktop.
Quick users page mod to allow for bulk adding to BuddyPress groups.
<?php
add_action('load-users.php',function() {
if(isset($_GET['action']) && isset($_GET['bp_gid']) && isset($_GET['users'])) {
$group_id = $_GET['bp_gid'];
$users = $_GET['users'];
foreach ($users as $user_id) {
groups_join_group( $group_id, $user_id );
}
}
//Add some Javascript to handle the form submission
add_action('admin_footer',function(){ ?>
<script>
jQuery("select[name='action']").append(jQuery('<option value="groupadd">Add to BP Group</option>'));
jQuery("#doaction").click(function(e){
if(jQuery("select[name='action'] :selected").val()=="groupadd") { e.preventDefault();
gid=prompt("Please enter a BuddyPres Group ID","1");
jQuery(".wrap form").append('<input type="hidden" name="bp_gid" value="'+gid+'" />').submit();
}
});
</script>
<?php
});
});
@Spirencreative
Copy link

Will this work with the current version of buddypress Version 4.3.0 . I see this was written 4 years ago. If so where would I place the bp-bulk-add-users.php file? Thanks for the help.

@vivekmathur1969
Copy link

Hi - just a quick query if this still works? I am on BP 5.1.2 and added this to functions.php. I do get the option in Bulk Actions, and the form for the Group ID, but after processing that the member is not added to the groups? Does something need to be changed? Any advice would be hugely appreciated. thanks!

@rohmann
Copy link
Author

rohmann commented Feb 26, 2020

I'm honestly not sure, sorry. I'd start by checking BuddyPress source for the groups_join_group function and see if anything has changed there.

@vivekmathur1969
Copy link

Thanks very much, Rohmann. Will check that out, and update here if I find anything.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment