Not only does the plug in not work, but there is no Admin activity on the support forum. All questions have gone unanswered.
Don't waste your time, This company has disappeared.
http://wordpress.org/extend/plugins/bp-registration-options/
Not only does the plug in not work, but there is no Admin activity on the support forum. All questions have gone unanswered.
Don't waste your time, This company has disappeared.
http://wordpress.org/extend/plugins/bp-registration-options/
Just updated this plugin. It should work with newer versions of BuddyPress. Didn't disappear, just doing work for money and haven't had time to update...
Plugin works for us on our production site.
got the following error.
Fatal error: Call to undefined function get_current_site() in
...
wp-content/plugins/bp-registration-options/bp-registration-options.php
Doesn't work for me on WP 2.9.2, BP 1.2.4. No options page to be found, and messes up BP signup page.
same problem as codeispoetry and countless other users in the forum and elsewhere. No bp-registration options under the settings menu. nothing to be found anywhere. running WP2.9.2 and BP 1.2.4.1.
Hello,
I have a problem with blog/group inscription from a secondary blog.
A new user joins only the first/main blog and no group.
For the same operation from the main blog's inscription he joins all selected blogs and groups.
running WP3.0(network config.), BP1.2.5 and BP-Registration-Options 1.2 (network activated)
Running 3.0.1 with plugin version 1.2. The plugin "activated" but I don't see anything under the Settings bar.
I'm the same. Activated fine, but no settings.
PLUGIN UPDATED!!! http://wordpress.org/extend/plugins/bp-registration-options/
@messenlehner
HURRAH!!!
I for one am so pleased that you've updated this. It works great.
I have a couple of ideas that I would like to share with you for enhancements but for now I'm very grateful!
@nathan12343 sure let me know... I am hoping to dedicate some more time to making cool enhancements...
They are only *minor* things in the scheme of things. More about the integration of the plugin.
At the moment when a user registers they need to activate the account to trigger the admin approval. It would be great if I could bypass this.
It would be great if the privacy option extended to all pages on the WordPress site, not just the BuddyPress ones. If this could be done then we'd also need to be able to exclude a page where the user could go to for login or registration.
These are just the top 3 in my head right now, and all on theme.
Thanks again. This plugin is the final piece I needed to be able to use BuddyPress for a site.
Still no links under admin settings menu.
My setup is
Plugin : 3.0.3
WordPress MU : 2.8.6
Buddypress : 1.1.3
Anything I might be missing?
Try upgrading your wordpress installation to 3. It is working like a charm for me.
Is there any older version of the plugin we could use?
Upgrading is not an option at this time.
Thanks in advance.
Hi bcaille,
Just pushed up 1.0 so you can download the 1st version. You should really try to upgrade your WordPress install to the most current version...
Thanks a lot messenlehner. It does work great.
I totally agree. 2.8.6 is outdated, but our customer doesn't have enough budget for now for further modifications.
Thanks again.
Hi,
I've installed WP3.0.1, BP 1.2.6 and and BP-Registration-Options 3.0.3.
When i register a new user, it doesnt activate the plugin features.
Is there something more i need to configure in WP ?
Thanks for the support
FYI, I had to delete 3 occurences of "switch_to_blog(1") because it makes network sites bug (current_blog values were lost)
Was this call usefull ? i don't understand.. maybe keep it and add a restore_blog call at this end of each 3 functions ?
Hey messenlehner, I think I've been able to get it to behave itself in 3.0.1 again. Here's the changes I made to bp-registration-options.php:
ADDED: (basically I took the security update you were doing in activation and made it happen immediately in signup)
function bprwg_signup_regoptions($user_id = false) {
global $wpdb;
$bp_moderate=get_option('bprwg_moderate');
$status = get_usermeta($userid, 'bprwg_status');
if ( empty( $user_id ) )
{
$user_id = $bp->loggedin_user->id;
}
if ( empty( $user_id ) )
{
return false;
}
if ($bp_moderate=="yes") {
$user_info = get_userdata($userid);
$username=$user_info->user_login;
//add/update usermeta status to pending
update_usermeta($user_id, 'bprwg_status', 'pending');
update_usermeta($user_id, 'bprwg_ip_address', $_SERVER['REMOTE_ADDR']);
//update wp_users to deleted=1, this will prevent member from being listed in member directory but not actually delete them. once appoved will be updated back to 0, if denied will fully delete account
$sql="update ".$iprefix."users set deleted=1 where ID=$user_id";
$wpdb->query($wpdb->prepare($sql));
//fire off email to admin about new memebr with links to accept or reject
$mod_email=$username." would like to become a member of your website, to accept or reject their request please go to ".get_bloginfo("url")."/wp-admin/admin.php?page=bp-registration-options&view=members \n\n";
$admin_email = get_option('admin_email');
wp_mail($admin_email, 'New Member Request - Created', $mod_email);
}
}
add_action( 'bp_core_signup_user', 'bprwg_signup_regoptions');
I then removed the similar code from the activation section: it seems like the corner cases where people have problems seem to involve when they create but don't activate an account.
It seems to work pretty well with this change in place: approval wasn't working on my install, but now is.
Automatic addition to groups still isn't working, and I can't check whether blogs are...
Anyways, hopefully this helps with some of the people who are having issues with 3.0.1 (myself included). I'll keep looking further at it and see if I can help with the other features.
This topic has been closed to new replies.