Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 276 through 300 (of 647 total)
  • Author
    Search Results
  • #172550
    postmarkj
    Participant

    Thanks for the quick reply – I don’t have an “Anyone can register” option in WP 3.6.1, and this is MU so it would need to be a Network Admin option. I’d be happy right now if I could get the code to work through functions or bp-config.

    #172549
    bp-help
    Participant

    @postmarkj
    Have you went to dashboard/settings/general and unchecked “Anyone can register” to the right of Membership? Remember BP is a WP plugin and if you disable WP registration, you also disable BP registration.

    #172547
    postmarkj
    Participant

    I’ve read multiple threads all saying different things in order to turn off default BP registration. Is it possible to just include a checkbox in BP Settings that would turn off BP registration allowing us to use a different plugin?

    I’ve tried functions.php, bp-config.php with
    remove_action( ‘init’, ‘bp_core_wpsignup_redirect’ );
    remove_action( ‘wp’, ‘bp_core_wpsignup_redirect’ );
    remove_action( ‘wp’, ‘bp_core_screen_signup’, 3 )

    And nothing seems to work. Just a simple checkbox at Setting|BuddyPress|Settings would work wonders!

    Thanks,
    Mark Jensen
    blo gs iddeaarts o rg

    Hugo Ashmore
    Participant

    Well for starters kill any plugins that might interfere with a registration process e.g facebook login ones – to test issues it’s always the instruction to disable all plugins working them back in until problem one is found.

    Other than that it’s hard to say there’s too little information. As far as BP 1.8.1 goes on a trunk install I appear to have no issues registering.

    #172390
    Hugo Ashmore
    Participant

    I do hope they didn’t really say could only be fixed by buddypress support. Generally email issues are not BP problems, and currently BP has no issues I’m aware of in sending registration emails, which also is really a WP function.

    Easy check that should have been run first would have been and still ought to be tried is to disable BP and simply try registering an account under WP.

    Often email issues fall under the heading of ‘Domain Record’ issues i.e email servers rejecting an email as it can’t be verified as authorised on the sending domain or there’s no PTR record or SPF record, or simply that the server sendmail is at issue, these though are not really problems that lie with WP or BP which normally happily send out emails.

    Search this forum though as these issues have been discussed many times and you’ll find more info in the archives.

    #171986
    @mercime
    Participant

    @ranebo You can disable registration by going to Settings > General and making sure registration is not enabled.

    The users can only fill out whatever Extended Profile Fields the Site/Super Admin created in the backend via Users > Profile Fields, users cannot create new profile fields. These profile fields can only be edited by the user in the front end via Member Profile Screens and not in the back end via User > Your Profie

    #171839
    martinbeaulne
    Participant

    Hi there.

    I am using a tabbed registration page to show a custom group of profile fields upon account creation. Everything works well: the tabbed browsing, the display of the fields, etc.

    The problem is, when I click submit, it only submits the second tab ( the last group of fields ).

    In other words. There are the basic infos about the account, at left, then, at right, the two tabs ( extended profile and custom group ). When I click submit, it only submits the basic account fields and the custom group field. Not the extended profile fields ( on the first tab ).

    I’m using the latest versions.

    Here is the exemple: http://martinbeaulne.com/kinocontact/register/

    Now, here is the code of register.php:

    
    
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>Basic - Accessible Tabs Example</title>
        <meta name="author" content="Dirk Ginader">
        <script type="text/javascript">document.documentElement.className += " js";</script>
        <link rel="stylesheet" href="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/slidingdoors/simple-sliding-doors.css" type="text/css" media="screen">
        <script src="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/js/jquery-1.9.1.js" type="text/javascript" charset="utf-8"></script>
        <script src="http://www.martinbeaulne.com/kinocontact/wp-content/themes/graphene/buddypress/members/js/jquery.tabs.js" type="text/javascript" charset="utf-8"></script>
        <script type="text/javascript">
    
        $(document).ready(function(){
            $(".tabs").accessibleTabs({
                tabhead:'h2',
                fx:"fadeIn"
            });
        });
    
        </script>    
    </head>
    <body>
    <div id="buddypress">
    
    	<?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() ) : ?>
    
    			<?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="" />
    
    			</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">
    
    					
    				<div class="tabs"> <!-- Le div des tabs -->
    				<h2>Extended profile</h2>
    				<div class="tabbody"> <!-- Le div de la première 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( 'profile_group_id=1' ) ) : 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 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; ?>
    				</div> <!-- Le div de la première section -->
    				<h2>Custom group</h2>
    				<div class="tabbody"> <!-- Le div de la deuxième 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( 'profile_group_id=4' ) ) : 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 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; ?>
    			</div> <!-- Le div de la deuxième section -->
    			</div> <!-- le div des tabs -->
    
    			</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>
    
    					</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 _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() ) : ?>
    
    			<?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><!-- #buddypress -->
    
        <script type="text/javascript">
        var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
        document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
        </script>
        <script type="text/javascript">
        var pageTracker = _gat._getTracker("UA-299719-2");
        pageTracker._initData();
        pageTracker._trackPageview();
        </script>
    </body>
    </html>
    

    Thanks for your help…

    #171828
    cpagan2000
    Participant

    Here you go

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    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-signup.php'; 
        }
    ?>
    #171827
    cpagan2000
    Participant

    This has worked for me

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    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-signup.php'; 
        }
    ?>
    #171826
    cpagan2000
    Participant

    Well this worked lets hope no issues.

    <?php
    // hacks and mods will go here
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    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-signup.php'; 
        }
    ?>
    #171823
    cpagan2000
    Participant

    It makes no sense do I have to create this file and then paste the code. Because there is no such file. Below is what it says on the link

    Disable BuddyPress’ registration and use WP’s instead. Paste this in /wp-content/plugins/bp-custom.php

    #170917
    mourneveningfall
    Participant

    I seem to have the same issue. disabled all plugins and switched my theme to Twenty Twelve disabled and re-enabled buddypress. issue still persists

    namrons
    Participant

    I have disabled all plugins and have the latest version of Buddypress and WordPress on a multisite installation. On the registration page the username field insists on lowercase characters. The only way around this for me is to change the hint.

    Which file do I edit to change hint from “Usernames can contain only letters, numbers, ., -, *, and @” to something like “Usernames can contain only lowercase letters, numbers, ., -, *, and @”

    #168308
    Cidade Sonho
    Participant

    If I use the plugin BP Disable Activation

    Everything it´s okay. But the native system it´s more useful!

    #168145
    cameronwilby
    Participant

    I am helping Kathryn with this issue, here are the details for the installation.

    The original programmer for the site vanished, so the configuration is the way it is. Not asking anybody to solve the problem on our behalf, just opening the issue to more eyes. All help and all input is greatly appreciated.

    Wordpress: 3.5.2
    Buddypress: 1.7.3
    PHP: 5.3 (I suspect this might be the culprit.)

    Installed Plugins

    Legend – (A)Active, (-)Deactivated

    BUDDYPRESS PLUGINS

    (A)BP Auto Login on Activation 1.0.1
    (A)BP Export Users 1.1
    (A)BP Group Announcements 1.0.2
    (A)BP Group Hierarchy 1.3.9
    (A)BG Group Management 0.6
    (A)BP Group Organizer 1.0.7
    (-)BP Labs 1.3

    (A)BuddyPress 1.7.3
    (A)BuddyPress Activity Plus 1.5
    (A)BuddyPress Auto Group Join 2.2.1
    (A)BuddyPress Docs 1.4.3
    (A)BuddyPress Docs Wiki add-on 1.0.3
    (-)BuddyPress Edit Group Slug 1.2
    (A)BuddyPress Group Email Subscription 3.3.3
    (A)BuddyPress Groups Extras 3.5.7
    (A)BuddyPress Like 0.0.8
    (-)BuddyPress Live Notification 1.0.3
    (-)BuddyPress Usernames Only 0.6
    (A)bbPress 2.3.2
    (A)bbPress reCaptcha 1.1
    (A)bbPress Search Widget 2.0.0
    (A)bbPress Threaded Replies 0.4.3
    (A)GD bbPress Attachments 1.9.2

    OTHER

    (A)Akismet 2.5.7
    (A)Automessage 2.3.1
    (A)BackWPup 3.0.12
    (-)Blog Categories for Groups 1.0.4
    (-)Confirm User Registration 2.0.4
    (-)Disable Comments 0.9
    (-)downML – Download Media Library 0.3.1
    (A)Email Users 4.4.4
    (-)Fundraising 2.3.6
    (-)Invite Anyone 1.0.21
    (-)Live Stream Widget 1.0.4.2
    (A)New RoyalSlider 3.0.93
    (-)P3 (Plugin Performance Profiler) 1.4.1
    (A)Plugins Garbage Collector 0.9.12
    (A)Revolution Slider 2.3.8
    (-)Scheduled Content 1.1.1
    (-)Select Language At Signup 1.0.4
    (A)SI CAPTCHA Anti-Spam 2.7.6.4
    (A)Sidebar Login 2.5.3
    (A)Simple Badges 0.1-alpha20120703
    (-)Snapshot 2.3.3
    (-)Tweet Blender 3.3.15
    (A)Ultimate Maintenance Mode 1.5.0
    (-)W3 Total Cache 0.9.2.11
    (A)WordPress Importer 0.6.1
    (A)WP-DBManager 2.63
    (-)WP-reCAPTCHA 3.1.6
    (-)WP Htaccess Editor 1.2.0
    (-)WP UI – Tabs accordions and more. 0.8.7
    (A)Yoast Breadcrumbs 0.8.5

    #167830
    gcarlos8377
    Participant

    @mercime

    I did those steps you told me to do and still it doesn’t work. I dont know if the membership plugin(Magic Member)I have is interfering with the process because one of the features it says “Disable registration email if BuddyPress is enabled?” So right now I dont know what else to do actually?

    Thanks for the support

    totoff
    Participant

    Hi,
    i am a new member here and i am working on a project with buddypress. that’s really interesting but i am stuck now.
    i would like to know whether it is possible to :
    -disable groupe creation for a normal user, only admin can manage group
    and
    -automatically link a user to severals groups (actually 2 groups) during the first registration.

    thanks in advance,

    Christophe,

    gcarlos8377
    Participant

    In the registration I fill all the details it asks and it goes throught successfully but its not creating the user or the blog on the multisite. I have a 3.5.2 wp installation and 1.7.2 buddypress installation. I disabled the plugins to see if that was the problem but the problem persists.

    Thanks for the valuable support

    oedipamaas
    Participant

    @mercime – I have been reading the codex for BuddyPress, Event Manager and WordPress core. It’s just hard to keep it all straight. My only point above was that it literally would take one extra sentence when answering questions to say something like, “put it in bp-custom.php (which is a file you’ll have to create…here’s the codex link”. That’s all. OTherwise, the approach above totally worked for me too! It disabled the completely non-fuctioning registration page (I’m using a BP friendly theme, but not the default) and now I let S2 Member handle the user registration/login process. I don’t how I could ever use BP as a stand alone so there are many things in it that are clearly buggy that consistently get blamed on using any other plugin or theme. My real wish is that the wonderful devs who made BP happen make a non-buggy Pro version and make some money for themselves (while we get better docs/examples/support).

    #167474
    Hugo Ashmore
    Participant

    No help is ever urgent on voluntary free help forums! 🙂

    This sounds like an issue with woocommerece if as you say it providing some form of registration, so have you also contacted their support & asked whether they have a notion of why this happens?

    Not sure what you mean by go into the editor of the register php it tells me that buddypress registration is disabled Can you elaborate on the ‘editor of the register php’ and what is telling you buddypress registration is disabled, WP handles enabling / disabling registration, BP just provides a page/form that can be navigated to if a blank registration page is setup.

    #167473
    Jchamp311
    Participant

    HI

    I am having an issue with my login and register page. I have BP 1.7 installed on WP3.5.2 I also have the latest Woocommerce installed.

    What is happening is that the register page redirects to the woocommerce login and register page and if I go into the editor of the register php it tells me that buddypress registration is disabled?

    I am supposed to be launching this site next week and I have only noticed this issue…

    Need help urgently so I can continue testing the site.

    Thanks in advance.

    Judah
    Participant

    @mercime thanks for your help. I got it figured out. I did not have the most recent version of my theme installed and the newer version disabled avatar uploads in the registration process which of course solves the problem. Thanks,

    BobQuentok
    Participant

    Hi, something strange happened.

    Today a person wrote me, that he couldn’t register on my site http://gamezgeneration.de/registrieren

    He typed in his desired username and his email, clicked “Register” and the site just reloads.
    I tried it for myself, but it doesn’t work. Some of my stuff members told me, that they got messaged by users as well in the past days.

    We’re using latest WordPress 3.5.1 and BuddyPress 1.7.2 and never had this problem before. I neither have installed new plugins nor have I installed a new theme.

    I really don’t know how to fix this. Tonight I’m going to enable maintenance mode and disable all plugins (and maybe activate the standard BuddyPress theme).

    #165817
    Henry
    Member

    Hey @bphelp, nice plugin idea! I think lots of companies would want to use something like that as a kind of intranet for staff only.

    So far i’ve come up with:

    Registration and login
    Register
    Activate
    Login
    Lost password
    Reset password

    Landing pages
    Members

    Messaging component
    Inbox
    Sentbox
    Compose
    Single message

    Profile component
    Public
    Edit
    Change avatar

    Settings component
    General
    Notifications
    Delete account

    Can you spot any I have missed?

    I haven’t got to the activity or friends components yet as these are currently disabled on my install.

Viewing 25 results - 276 through 300 (of 647 total)
Skip to toolbar