-
Thomas Maier replied to the topic Upload Profile Picture Missing in the forum How-to & Troubleshooting 2 years ago
I just had the same problem and wanted to clarify the solution, in case anyone else stumbles upon this.
The option that Mathieu was pointing to is not in the BuddyPress option but in the WordPress options: Settings > Discussion > Avatar.
I normally disable avarats on all sites and was also wondering why I didn’t have that option now on my new B… -
Thomas Maier replied to the topic how to add new members to groups automatically? in the forum How-to & Troubleshooting 2 years, 9 months ago
The following code works for me:
function automatic_group_membership( $user_id ) {
if( ! $user_id ) {
return false;
}groups_invite_user( array( 'user_id' => $user_id, 'group_id' => $group_id ) );
}
add_action( 'bp_core_activated_user', 'automatic_group_membership' );
add_action( 'user_register', 'automatic_group_membership'…[Read more]
@webzunft
Active 1 month ago