@filehippofree
Active 6 years, 5 months ago
-
Varun Dubey replied to the topic User registration fails when multiple options selected in BuddyPress 3.0.0 in the forum Installing BuddyPress 6 years, 5 months ago
Hi @filehippofree,
As a Quick fix, You can replace line 91 at following path
buddypress/bp-members/screens/register.phpif ( isset( $_POST[ 'field_' . $field_id ] ) ) {
$_POST[ 'field_' . $field_id ] = trim( $_POST[ 'field_' . $field_id ] );
}with
if ( isset( $_POST[ 'field_' . $field_id ] ) && !is_array( $_POST[ 'field_' .…
[Read more]