Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 51 through 75 (of 463 total)
  • Author
    Search Results
  • César
    Participant

    The last update March / April 2020, has caused an uncomfortable and inconvenient situation:

    We have been using the LEARNDASH, Bbpress and BudyPress Add-On for months. Excellent until this month ….

    Now…
    1. A second registration form appears (owned by Buddypress), after having used the original LEARNDASH (LMS)
    2. And in addition, a blue button began to appear above the section “Course content) that does not serve or does not fulfill its functionality.

    This affects the functionality of the LMS and service to those who wish to register. And LearnDash offers both Add-ons, Bbpress, Buddypress

    You should consider this with LearnDash and repair this so that we have the option to skip a second registration form, the one that belongs to Buddypress.

    Easy To Make has also written to LEARNDASH, but they say this is from Buddypress.

    Unfortunately we have decided for the moment to disable Bbpress and Budypress, until this is fixed.

    Thank you! CEASE
    easytomake.net

    #310784
    Varun Dubey
    Participant

    @artsybohemian BuddyPress override the default registration process, you can check following thread

    How to disable the registration function of buddypress?

    #310523
    #309476
    markcummins
    Participant

    I think you can also disable the generated password on the registration page for the nouveau theme by adding the following code to functions.php

    add_action( 'bp_before_register_page', 'bp_page_signup_disable_random_password');
    function bp_page_signup_disable_random_password(){
      add_filter( 'random_password', '__return_empty_string' );
    }
    #308984
    jennifersanchez
    Participant

    Hi! how i can do to disable the activation user of BP for login to the profile without activating and without approve the email? i saw many post of it but it was all older and it isnt work now.

    i tried this code without lucky

    add_filter( 'bp_core_signup_send_activation_key', 'ps_disable_activation_email' );
    function ps_disable_activation_email() {
    	return false;
    }
    add_filter( 'bp_registration_needs_activation', '__return_false' );

    Thanks!!

    stevecurrey
    Participant

    Hi all,

    Can anyone tell me how I go about disabling the auto generation of the strong password on the registration form?

    The users of my site are not very tech savvy and they tend to register without taking note of the password then have to reset it.

    I get daily complaints…

    The password strength notices are fine so that isn’t a problem.

    Many thanks in advance!

    Stephen.

    Georgio
    Participant

    Hi everyone,
    is it possible to disable the auto-generation of passwords on the signup form?
    This features comes with the latest version of Buddypress and gives me headaches, given the configuration of my site.

    The context:
    The home page is the signup page and there is a login form on the topbar. Both browsers, Firefox and Chrome, fill the signup form with the username of the login form. The problem is with firefox who sees my username together with the auto-generated password and thinks I want to update my credentials. So everytime I login, Firefox asks me if I want to update my password. It is very annoying and I must stop this.

    Is there any snippet to disable this feature?

    Thanks in advance

    #307711
    misterjekyll
    Participant

    Hi,
    My registration seems to work fine on the computer but I get reviews that some users can’t register on their mobile device. I tried to register through mobile and have the same issues. After completing the form I get redirected to the same registration form with no errors.

    Website info:
    – WordPress version: 5.2.3–nl_NL
    – Website: mierenmarkt.be
    – Registration form: mierenmarkt.be/registratie

    I tried:
    – Disable plugins (-> didn’t work)
    – Change theme to default (-> didn’t work)

    Anyone knows any fixes? I don’t get error reports in my error logs.

    fabiojr2016
    Participant

    Perfecto, muchas gracias por el código… si, con ese código si pude deshabilitar el registro de BuddyPress y dejé el registro original de WordPress. Yo cree el archivo bp-custom.php dentro de la carpeta wp-content/plugins/

    Es decir, tengo Buddypress funcionando, pero con registro de WordPress.

    <?php
    /*disable registration bp */ function my_disable_bp_registration() { remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ ); remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ ); } add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ ); add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . ‘/wp-login.php?action=register’; }
    ?>

    #306759
    gobbuilder
    Participant

    Hi,

    My testsite was working fine on the 28th and stopped working on the 29th. While I changed nothing.

    The problem:
    1. Choose to register as a new user
    2. Fill in the firm and press submit.
    3. Result you get back to the registration page with the password data wiped.

    No errors in debug mode.
    Still happens when all other plugins disabled

    I have been staring at this problem for 3 hours now and I’m stuck. does anyone have an idea?

    #305900

    In reply to: Wrong count shows

    bdd
    Participant

    @prashantvatsh I’m having a similar problem and would appreciate a little clarity on your suggestion.

    1. Which email are you talking about when you say to disable the activation email?
    2. How do I auto-login them on registration?
    3. Where/how do I set it so that they’re redirected to the proper place to activate their account? (You mentioned the Users screen and you mentioned their BuddyPress profile. For either, which specific page do I list and where do I list it?)

    Thank you!

    ladymay
    Participant

    Hello,
    I would like to manually activate all new profiles as an administrator. At the moment, a new user receives an activation email, and an email notification about new user’s registration is sent to an administrator only after a newcomer activates one’s email.
    That is why I need to (1) receive a notification about a new user as soon as he/she is registered but doesn’t activate one’s profile and (2) disable a possibility to activate a profile by a user for good.
    How can I do it?
    I will utterly appreciate specific recommendations.

    #303549
    airsid
    Participant

    Hello,
    Please find attached my plugins/buddypress/bp-themes/bp-default/registration/register.php content

    <?php get_header( 'buddypress' ); ?>
    
    	<div id="content">
    		<div class="padder">
    
    		<?php do_action( 'bp_before_register_page' ); ?>
    
    		<div class="page" id="register-page">
    
    			<form action="" name="signup_form" id="signup_form" class="standard-form" method="post" enctype="multipart/form-data">
    
    			<?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?>
    				<?php do_action( 'template_notices' ); ?>
    				<?php do_action( 'bp_before_registration_disabled' ); ?>
    
    					<p><?php _e( 'User registration is currently not allowed.', 'buddypress' ); ?></p>
    
    				<?php do_action( 'bp_after_registration_disabled' ); ?>
    			<?php endif; // registration-disabled signup setp ?>
    
    			<?php if ( 'request-details' == bp_get_current_signup_step() ) : ?>
    
    				<h2><?php _e( 'Create an Account', 'buddypress' ); ?></h2>
    
    				<?php do_action( 'template_notices' ); ?>
    
    				<p><?php _e( 'Registering for this site is easy, just fill in the fields below and we\'ll get a new account set up for you in no time.', 'buddypress' ); ?></p>
    
    				<?php do_action( 'bp_before_account_details_fields' ); ?>
    
    				<div class="register-section" id="basic-details-section">
    
    					<?php /***** Basic Account Details ******/ ?>
    
    					<h4><?php _e( 'Account Details', 'buddypress' ); ?></h4>
    
    					<label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    					<?php do_action( 'bp_signup_username_errors' ); ?>
    					<input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" />
    
    					<label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    					<?php do_action( 'bp_signup_email_errors' ); ?>
    					<input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" />
    
    					<label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    					<?php do_action( 'bp_signup_password_errors' ); ?>
    					<input type="password" name="signup_password" id="signup_password" value="" />
    
    					<label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    					<?php do_action( 'bp_signup_password_confirm_errors' ); ?>
    					<input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" />
    
    					<?php do_action( 'bp_account_details_fields' ); ?>
    
    				</div><!-- #basic-details-section -->
    
    				<?php do_action( 'bp_after_account_details_fields' ); ?>
    
    				<?php /***** Extra Profile Details ******/ ?>
    
    				<?php if ( bp_is_active( 'xprofile' ) ) : ?>
    
    					<?php do_action( 'bp_before_signup_profile_fields' ); ?>
    
    					<div class="register-section" id="profile-details-section">
    
    						<h4><?php _e( 'Profile Details', 'buddypress' ); ?></h4>
    
    						<?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?>
    						<?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( array( 'profile_group_id' => 1, 'fetch_field_data' => false ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    
    						<?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    
    							<div class="editfield">
    
    								<?php if ( 'textbox' == bp_get_the_profile_field_type() ) : ?>
    
    									<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" />
    
    								<?php endif; ?>
    
    								<?php if ( 'textarea' == bp_get_the_profile_field_type() ) : ?>
    
    									<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<textarea rows="5" cols="40" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_edit_value(); ?></textarea>
    
    								<?php endif; ?>
    
    								<?php if ( 'selectbox' == bp_get_the_profile_field_type() ) : ?>
    
    									<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>">
    										<?php bp_the_profile_field_options(); ?>
    									</select>
    
    								<?php endif; ?>
    
    								<?php if ( 'multiselectbox' == bp_get_the_profile_field_type() ) : ?>
    
    									<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    									<select name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" multiple="multiple">
    										<?php bp_the_profile_field_options(); ?>
    									</select>
    
    								<?php endif; ?>
    
    								<?php if ( 'radio' == bp_get_the_profile_field_type() ) : ?>
    
    									<div class="radio">
    										<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    										<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    										<?php bp_the_profile_field_options(); ?>
    
    										<?php if ( !bp_get_the_profile_field_is_required() ) : ?>
    											<a class="clear-value" href="javascript:clear( '<?php bp_the_profile_field_input_name(); ?>' );"><?php _e( 'Clear', 'buddypress' ); ?></a>
    										<?php endif; ?>
    									</div>
    
    								<?php endif; ?>
    
    								<?php if ( 'checkbox' == bp_get_the_profile_field_type() ) : ?>
    
    									<div class="checkbox">
    										<span class="label"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></span>
    
    										<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    										<?php bp_the_profile_field_options(); ?>
    									</div>
    
    								<?php endif; ?>
    
    								<?php if ( 'datebox' == bp_get_the_profile_field_type() ) : ?>
    
    									<div class="datebox">
    										<label for="<?php bp_the_profile_field_input_name(); ?>_day"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    										<?php do_action( bp_get_the_profile_field_errors_action() ); ?>
    
    										<select name="<?php bp_the_profile_field_input_name(); ?>_day" id="<?php bp_the_profile_field_input_name(); ?>_day">
    											<?php bp_the_profile_field_options( 'type=day' ); ?>
    										</select>
    
    										<select name="<?php bp_the_profile_field_input_name(); ?>_month" id="<?php bp_the_profile_field_input_name(); ?>_month">
    											<?php bp_the_profile_field_options( 'type=month' ); ?>
    										</select>
    
    										<select name="<?php bp_the_profile_field_input_name(); ?>_year" id="<?php bp_the_profile_field_input_name(); ?>_year">
    											<?php bp_the_profile_field_options( 'type=year' ); ?>
    										</select>
    									</div>
    
    								<?php endif; ?>
    
    								<?php if ( 'url' == bp_get_the_profile_field_type() ) : ?>
    
    									<label for="<?php bp_the_profile_field_input_name(); ?>"><?php bp_the_profile_field_name(); ?> <?php if ( bp_get_the_profile_field_is_required() ) : ?><?php _e( '(required)', 'buddypress' ); ?><?php endif; ?></label>
    									<input type="text" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" value="<?php bp_the_profile_field_edit_value(); ?>" <?php if ( bp_get_the_profile_field_is_required() ) : ?>aria-required="true"<?php endif; ?>/>
    
    								<?php endif; ?>
    
    								<?php do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); ?>
    
    								<?php if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?>
    									<p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></a>
    									</p>
    
    									<div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>">
    										<fieldset>
    											<legend><?php _e( 'Who can see this field?', 'buddypress' ) ?></legend>
    
    											<?php bp_profile_visibility_radio_buttons() ?>
    
    										</fieldset>
    										<a class="field-visibility-settings-close" href="#"><?php _e( 'Close', 'buddypress' ) ?></a>
    
    									</div>
    								<?php else : ?>
    									<p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>">
    										<?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?>
    									</p>
    								<?php endif ?>
    
    								<?php do_action( 'bp_custom_profile_edit_fields' ); ?>
    
    								<p class="description"><?php bp_the_profile_field_description(); ?></p>
    
    							</div>
    
    						<?php endwhile; ?>
    
    						<input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" />
    
    						<?php endwhile; endif; endif; ?>
    
    						<?php do_action( 'bp_signup_profile_fields' ); ?>
    
    					</div><!-- #profile-details-section -->
    
    					<?php do_action( 'bp_after_signup_profile_fields' ); ?>
    
    				<?php endif; ?>
    
    				<?php if ( bp_get_blog_signup_allowed() ) : ?>
    
    					<?php do_action( 'bp_before_blog_details_fields' ); ?>
    
    					<?php /***** Blog Creation Details ******/ ?>
    
    					<div class="register-section" id="blog-details-section">
    
    						<h4><?php _e( 'Blog Details', 'buddypress' ); ?></h4>
    
    						<p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ); ?></p>
    
    						<div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>>
    
    							<label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    							<?php do_action( 'bp_signup_blog_url_errors' ); ?>
    
    							<?php if ( is_subdomain_install() ) : ?>
    								http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" /> .<?php bp_blogs_subdomain_base(); ?>
    							<?php else : ?>
    								<?php echo home_url( '/' ); ?> <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" />
    							<?php endif; ?>
    
    							<label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label>
    							<?php do_action( 'bp_signup_blog_title_errors' ); ?>
    							<input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" />
    
    							<span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?>:</span>
    							<?php do_action( 'bp_signup_blog_privacy_errors' ); ?>
    
    							<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label>
    							<label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label>
    
    							<?php do_action( 'bp_blog_details_fields' ); ?>
    
    						</div>
    
    					</div><!-- #blog-details-section -->
    
    					<?php do_action( 'bp_after_blog_details_fields' ); ?>
    
    				<?php endif; ?>
    
    				<?php do_action( 'bp_before_registration_submit_buttons' ); ?>
    
    				<div class="submit">
    					<input type="submit" name="signup_submit" id="signup_submit" value="<?php esc_attr_e( 'Complete Sign Up', 'buddypress' ); ?>" />
    				</div>
    
    				<?php do_action( 'bp_after_registration_submit_buttons' ); ?>
    
    				<?php wp_nonce_field( 'bp_new_signup' ); ?>
    
    			<?php endif; // request-details signup step ?>
    
    			<?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?>
    
    				<h2><?php _e( 'Check Your Email To Activate Your Account!', 'buddypress' ); ?></h2>
    
    				<?php do_action( 'template_notices' ); ?>
    				<?php do_action( 'bp_before_registration_confirmed' ); ?>
    
    				<?php if ( bp_registration_needs_activation() ) : ?>
    					<p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ); ?></p>
    				<?php else : ?>
    					<p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p>
    				<?php endif; ?>
    
    				<?php do_action( 'bp_after_registration_confirmed' ); ?>
    
    			<?php endif; // completed-confirmation signup step ?>
    
    			<?php do_action( 'bp_custom_signup_steps' ); ?>
    
    			</form>
    
    		</div>
    
    		<?php do_action( 'bp_after_register_page' ); ?>
    
    		</div><!-- .padder -->
    	</div><!-- #content -->
    
    	<?php get_sidebar( 'buddypress' ); ?>
    
    	<script type="text/javascript">
    		jQuery(document).ready( function() {
    			if ( jQuery('div#blog-details').length && !jQuery('div#blog-details').hasClass('show') )
    				jQuery('div#blog-details').toggle();
    
    			jQuery( 'input#signup_with_blog' ).click( function() {
    				jQuery('div#blog-details').fadeOut().toggle();
    			});
    		});
    	</script>
    
    <?php get_footer( 'buddypress' ); ?>
    #302566
    Julia_B
    Participant

    Sorry, me again. I’ve been trying to figure this out all day and I just can’t fix it.

    I’ve tried deactivating all plugins, uninstalling and reinstalling buddypress and I’ve also disabled the site’s avada theme and switched to 2019, but the issue persists.

    I’ve noticed that the activity page has also stopped working and is now blank.

    Before this error the registration page had a field for display name which is now missing, yet the profile details header remains. Here’s a screenshot: https://www.dropbox.com/s/kwdznzvx67oyrao/Screenshot%202019-02-02%2016.14.29.png?dl=0

    Or the page itself is here: http://gym.juliabuckleyfitness.com/register/

    Hope someone can help 🙂

    #302564
    kenjames
    Participant

    Am a novice but am using WP 5.03 with Buddypress 4.0 and bbpress 1.5.14. The site is https://908X0.org. It is not live and Registration has been disabled. New users have Subscriber role for buddypress and Participant for Forums. My problem: all new users I have created have the capability to Edit Pages after login. I thought it had something to do with my IP or browser but cleared the browser and sent the link to my site to a friend and he could see the Edit Page text in the admin bar. I disabled every plugin, including bbpress. The bug is still there. I have built an almost identical site that does not have this problem.

    I am not a developer or a coder. I can follow explicit instructions to make changes in the C-panel or elsewhere, but most of the time I just expect things to work like they are supposed to. I can generally find solutions or work-arounds but this one has me stumped. I have been unable to find anything on line about this problem. Does anyone have any idea what may be causing this?

    #302418
    jstande
    Participant

    If the following is to redirect Registration from BP to WP, what would redirect from BP to [Peepso_Register] ? And exactly where would I put it?

    (Any reason why nobody has developed options to turn everything on or off in BP since it is so integrated with other themes and plugins?)

    /*disable registration bp */
    function my_disable_bp_registration() {
    remove_action( ‘bp_init’, ‘bp_core_wpsignup_redirect’ );
    remove_action( ‘bp_screens’, ‘bp_core_screen_signup’ );
    }
    add_action( ‘bp_loaded’, ‘my_disable_bp_registration’ );

    add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
    function firmasite_redirect_bp_signup_page($page ){
    return bp_get_root_domain() . ‘/wp-login.php?action=register’;
    }

    Version 4.1.0 BuddyPress
    Version 5.0.3 WordPress

    Home Default

    #282947

    In reply to: No register

    loveistheanswer
    Participant

    Found the answer
    Registration
    Registration is currently disabled. Before associating a page is allowed, please enable registration by clicking on the “Anyone can register” checkbox on this page.

    #282646
    tibbalds
    Participant

    Solution found! It wasn’t a BuddyPress issue, it’s a wordpress issue!

    I contacted WordPress and found a solution. I thought I’d post it in case it comes up with someone else again:

    That should mean that single sign on is causing trouble. To test that, navigate to My Site –> Settings –> Security in your WordPress.com dashboard, and disable the ‘Allow sign in using WordPress.com accounts’ option

    This means that you will no longer be able to access your wp-admin area with your WordPress.com login information though. We’ll need to make sure we set you up with an account for your wp-admin area.

    We’ll need to set you up with a password for your username for wp-admin.

    You’ll need to go to WP-Admin > Users and then select your username from the list.

    The problem is that on WordPress.com the option to allow WordPress.com sign in replaces the regular registration form that BuddyPress uses to allow users to sign in. So we need to disable this option to let the user’s sign in using only their Buddy Press log in without a WordPress.com account.

    Hope this helps someone else

    #282232
    funkman733
    Participant

    Hello everyone, in my installation of WordPress Multisite,

    I’m creating a site with social features using BuddyPress, bbPress, the theme SweetDate, Elementor, Slider Revolution and to manage WP membership Ultimate Membership Pro. I set everything, and everything seemed to be fine . Until yesterday everything is ok. I have customized the login and registration forms of the theme user with those of Ulimate Membership Pro. I have disabled the function of BuddyPress for user registration from the preset module of BP.

    Yesterday evening everything was OK, I was able to make user registrations and buy memberships. This morning I tried to register a user, but nothing happens … I reset the form of the theme, and by clicking on the registration key the user is redirected to a page [site_name] / register / that does not exist, reporting the error message 404. I have created the page “register”, and of course the page is white.

    I assigned BuddyPress the “register” page as a registration page, and now the user is redirected to the “register” page but remains white with the scroll wheel running at infinity. I tried to register from other subsites and everything works fine, even accessing it through [site_name] / wp-signup. I tried the same link on the site in question and nothing, white page with wheel that runs endlessly…

    Do you know what you can depend on and how you can solve?

    edited re line breaks and language – hoefully Google translate did not mangle the OP

    #282081
    aptheisen92
    Participant

    WP Version 4.9.8
    BP Version 3.2.0
    Website Link
    I’m using Kleo Theme

    Hi I’m a new WP & BP user and I want to make it so that not ANYONE can register, but I could send a code or a link to certain people so they can register and make a profile. But anytime I turn off “Anyone can register” it also disables the registration page. Is there a way around this or is there a plugin I can use? Also I made a directory page for the members, but when I’m not logged in and I click on a member profile it redirects me to the home page and I’m unable to see the profile. Is there some settings I can change? The profile visibility is set for everyone…

    benedictbani
    Participant

    Hello, Please I would like to manually approve my BuddyPress registration requests and Disable Automatic Account Activation, and also change the registration message to [ Your membership account is awaiting approval by the site administrator ] am using WordPress 4.9.8, http://betalifes.com/, Please help out

    #279412

    In reply to: Wrong count shows

    Prashant Singh
    Participant

    Everytime I need to go back to admin section, tools -> buddypress.

    Let me explain, as you are using Memberpress registration so you are not following BuddyPress user activation process which is ‘User registers on your site and then they get an activation mail where they get a link and by clicking that they activate their account and as soon as they log in the count gets updated.’

    So here one can disable activation email and then can go to the Users screen and there can activate them manually and as soon as they log in there on the site they will be listed there.

    Normally if people are not deactivating BuddyPress activation mail then I suggest them this plugin https://buddydev.com/plugins/bp-autologin-on-activation/ so that their users get logged-in automatically as soon as they activate their account and in this way, BuddyPress will receive it’s active members data and count will be fine there.

    Right now it seems like you are having issues there due to Memberpress registration. I will suggest you auto-login them on registration and redirect them to their BuddyPress profile and in this way, you do not have to go and do that count fix again and again hopefully.

    Thanks

    Bit Boy
    Participant

    Btw, The above code disables the toggle option on profile edit too.
    To only change it on registration page, Please use the below code instead

    
    .register-page .signup-form .editfield .field-visibility-settings,
    #register-page .standard-form .field-visibility-settings-header {
        display:none;
    }
    

    Best Regards
    B

    amkh
    Participant

    I have hidden the “Who can see this field?” from buddypress profile fields and registration page. But I notice whenever the registration page loads/refreshes and also profile, this field keeps keeps appearing for few seconds. Is there a way to completely disable this field appearing?

    #278323
    micheleestes
    Participant

    Hello, I would like to manually approve our BuddyPress site registration requests. To do this, I have disabled the “activate your account” email message, and instead, approve registration requests in the “pending” area on the dashboard. However, when a person registers they see text on the Register page suggesting they will receive an email, and will be able to activate their own account. How can I change this text to avoid confusion? How can I make sure those who register are unable to activate their own accounts?

    [I tried the Eonet Manual User Approval Plug-in but this added even more contradictory text to the registration confirmation webpage, plus there appeared to be a glitch when using with BuddyPress even though the two plug-ins seem to be compatible otherwise.]
    Thanks in advance…

Viewing 25 results - 51 through 75 (of 463 total)
Skip to toolbar