Hello,
I can't see "Registration options page" in WP 3.1.2 and BP 1.2.8
Merci
JM
Hello,
I can't see "Registration options page" in WP 3.1.2 and BP 1.2.8
Merci
JM
Yup, having the same problem finding the options page.
Me too, completely gone!
Tried various settings, network install, non-network install but still nothing.
Hopefully they'll bring out a fix ASAP because it was very useful.
It's a change made from WP 3.0 to 3.1 that broke the 3.0 plugins. I don't know enough about the WP api to fix it...
Same here. Can't see the options in the buddypress settings on my multisite installation. Please help
Hello @all,
I'm not a developer, but I tried some changes. The managed registration is working fine now, but one cannot upload an avatar and one cannot use the other things. I don't know if it is because I'm not using the default theme or if there will be some other changes necessary. If I saw it right the structure of the upload directory changed with 3.2.1. It is possible that the avatar-upload would work if one will work upon this. Here are the changes I made in bp-registration-options.php:
line 6:
find
!is_site_admin()
change to
!is_super_admin()
line 14:
find
add_action( 'admin_menu', 'bprwg_admin_menu' );
change to
add_action( 'network_admin_menu', 'bprwg_admin_menu' );
line 1729:
find
echo '<div class="error"><p>You have <a href="'.get_bloginfo("url").'/wp-admin/admin.php?page=bp-registration-options&view=members"><strong>'.count( $db_result ).' new member request'.$s.'</strong></a> that you need to approve or deny. Please <a href="'.get_bloginfo("url").'/wp-admin/admin.php?page=bp-registration-options&view=members">click here</a> to take action.</p></div>';
change to
echo '<div class="error"><p>You have <a href="'.get_bloginfo("url").'/wp-admin/network/admin.php?page=bp-registration-options&view=members"><strong>'.count( $db_result ).' new member request'.$s.'</strong></a> that you need to approve or deny. Please <a href="'.get_bloginfo("url").'/wp-admin/network/admin.php?page=bp-registration-options&view=members">click here</a> to take action.</p></div>';
Would be nice to hear from you... =)
This topic has been closed to new replies.