Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 101 through 125 (of 492 total)
  • Author
    Search Results
  • #273005
    mechwiy
    Participant

    hello, thank you it worked

    I have few other questions :

    1) what about the css, I tried to edit it but the css of the registration page is not changing even with the !important, ps : I tried to add the css rules in the registration page with visual composer. Usually when the css rule is not working properly I can find the rule in the console and the rule is crossed out, but here in this case I can’t even find the css rules that I added.

    2) how can I disable the sentence “this field can be seen by X” , I tried to disable it with the css rule display:none but I got the problem that I described in the first point, is there another way to disable it other than with the css ?

    thank you for your answers

    #272818
    Abe
    Participant

    Hi there.

    Wordpress: 4.95
    BuddyPress: 2.94
    All other plugins are up-to-date.

    Website: https://www.potatoesandrice.com

    This is an intermittent issue, so maybe difficult to resolve. I’m hoping you may have some ideas or may have run across this before and therefore have some suggestions πŸ™‚

    Buddypress came bundled in my WordPress theme (Sweetdate) by SeventhQueen.

    I have a database of users – currently close to 900 members. When I have a new user register, I receive an email notifying me of their registration along with their username and email. I copy their username and go to the WordPress backend > Users and do a search for the username to edit their status. Now here’s the intermittent issue. I’d say 1 out of 10 (approx.) emails that I get, I am unable to find the user in the user area of the backend or in the front end as well. Interestingly enough, I have another plugin (Newsletter) that collects user info at signup and that plugin DOES have the missing user details.

    I contacted SeventhQueen first and they gave the following response:

    – You’re having database continuity issues at the host level, either your database is failing intermittently or your host is restoring temporary backups of your database.

    So, next I contacted my host (siteground) and they gave the following response:

    I am unable to find anything in the apache error logs that can indicate an issue with the users.

    Most likely the issue is coming from the plugin responsible for the user registrations.

    I know normally we would disable other plugins to see if there is any kind of conflict, but since this issue is so intermittent, that would mean disabling my site fo a long time and not really knowing if it has been resolved.

    Thanks in advance for any help πŸ™‚

    Abe

    yusareba
    Participant
    #272790
    yusareba
    Participant
    #272781
    yusareba
    Participant

    I’m sure this has came up before, however I haven’t found a recent search result that works.

    When BuddyPress is enabled it overrides the default WP registration page.

    How can I prevent this from happening?

    #272613

    In reply to: Registration Page 404

    Buddy Quaid
    Participant

    I just disabled BuddyPress from the Network > Dashboard > Plugins

    and the registration page started working. It was showing BuddyPress fields and I was wondering how this could be happening since I just disabled it.

    I checked out the main sites plugins and BuddyPress is activated there. So my question is, could it have been double activated? Once on the website and once in the network? I have a multisite operation. Where should it be activated? Network or on the actual site?

    graphitewp2
    Participant

    Thank you Paul for commenting. I wish I was clearer.

    I was referring to the Log In and Register buttons on the admin bar (which is Buddypress) in the top left.

    Im using this to disable BuddyPress’ registration process and fallback to WordPress. I want to merely change the link of the Log In button so it goes to my custom login page. How do you go about doing it?

    
    <?php
    
    /**
     * 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' );
    
    ?>
    #272124
    rastislavkr
    Participant

    Hello @djpaul,
    I tried to create in folder wp-content β†’ plugins the file bp-custom.php with this code:

    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() . '/iump-subscription-plan/'; 
        }
    

    Ensures redirect to my subscription plan (/iump-subscription-plan/). I have a registration after the membership plan has been selected. It looks like it works. Well thank you.

    #271579
    meganelford
    Participant

    Hi,

    I have a user that has registered and has a profile page on the frontend, but I can’t find him in the backend. We have a small intranet of about 35 people, so it would be hard to miss. There are no pending registrations, so it seems he has activated his account. I set up the site with account deletion of users disabled, so it’s not like I’m seeing a cached version of a deleted account.

    Help …?

    mcpeanut
    Participant

    @jonleesky hmm, try this

    /*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'; 
        }

    Let me know bud

    mcpeanut
    Participant

    @jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out.

    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'; 
        }

    What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the PHP opening and closing tags and save.

    This should disable BuddyPress registration and let you use WordPress registration as default, hope this helps.

    #271455
    ezekielrage
    Participant

    I was able to resolve the problem of no emails being sent after registration by disabling Extended Profiles.
    Trying to resend notifications through Manage Signups still failed though. To work around that I had to disable Account Settings.
    Making both those changes seemed to fix my email problems.

    MrShawnTierney
    Participant

    I have an issue I need help solving.

    New User BuddyPress activation emails (and resends) are being blocked by all Microsoft email services (Live, Hotmail, MSN, etc)

    However, no other emails are being blocked, and activation emails and resends make it to other services like GMail.

    Is anyone else seeing the same issue?

    My system is using the latest version or WordPress 4.9.2 and BuddyPress 2.9.2

    How I tested my WordPress site (not a multisite:)

    1 – Disabled all plugins on my site.
    2 – Registered for my site with standard WordPress interface using a Hotmail.com email account and received registration email from WordPress nearly instantly in my hotmail inbox.
    3 – Activated Buddypress
    4 – Registered with another Hotmail account and never (8 hours and counting) received activation email.
    5 – Registered with Live, MSN, Outlook, Gmail, and other email accounts. Registration email makes it to ALL email services EXCEPT Microsoft.
    6 – Wondering if it’s just BuddyPress registration emails, so I reset the password on existing accounts that use Live, MSN, and Hotmail wile BuddyPress is active. Password reset emails arrive no issue.
    7 – Tried re-sending registration emails. They arrive at all email services except Microsoft.
    8 – Disable Buddypress and try registering with Live.com email. Like step 2 I get email immediately.
    9 – Enable Buddypress and try registering with another Live.com email. Registration email never arrives.
    10 – Send email directly to Microsoft accounts using same email address that wordpress does, and they arrive no issue.
    11 – Forward registration email from Gmail to Hotmail, and forward arrives without issue
    12 – Create a new email address for my website to use to send email with, and go through above steps with same results.

    Does anyone have an idea why only BuddyPress Activation emails could/would be block by only Microsoft? ALL other site emails sent to the same Microsoft email addresses go through including:
    – WordPress registration emails (when BP is disabled)
    – Password Reset emails
    – Emails sent directly using an email client

    I have also tried an SMTP mail plug-in with the same results.
    I have tried the Tools – BuddyPress – Reinstall emails with same results.

    Is anyone else seeing this issue?

    Does anyone have any thoughts or suggestions?

    Thanks in advance for any suggestions!

    Shawn Tierney

    #270052
    kariellen35
    Participant

    I am still having problems with my user registration and it resides solely with buddypress. I currently have all plugins disabled besides buddypress. I can’t help but wonder if this was caused by the update. Is anyone else having this issue?

    #269735
    spadixon
    Participant

    Greetings!

    I currently have WP 4.9.1 & Buddypress 2.9.2 installed. I have made a navigation menu, selected the buddy press options, which include log in, log out & Register. I have also made a bp-custom.php file with the following text in it in order to disable the BP registration and to use the default wp one.

    <?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-login.php?action=register’;
    }

    ?>

    This works fine, in regards to when you are on the WP log in page, and choose register, it loads the correct registration page.

    However, in regards to the BP Register on the navigation menu, this still re directs to the buddypress registration page. i would like it to direct to the WP one.

    Can i ask please what else is needed in order for the Buddypress Register navigation menu to redirect to the WordPress Register Page.

    Regards

    #268825
    willallen83
    Participant

    Hi!

    I am using WordPress 4.8.3, BuddyPress 2.9.2, and s2Member 170722
    at http://gatetest2.aishasalem.com

    I am doing everything that I can to integrate BuddyPress and s2Memeber.

    I am hoping to get a smooth registration process going. With a free membership and a paid membership, s2member_level1. It seems no matter what I do, the registration process is ugly, and they don’t really talk to each other.

    Currenlty, I am trying the code out from this post https://codex.buddypress.org/developer/user-submitted-guides/useful_func_s2_bp/. It seems very promising. I have modified the code a little AND had to add some code to disable the buddypress automatic redirect from the default wordpress registration page.

    Here is my code (slightly modified from the one in the post, as I want to add this for all members, not just level2).

    // disable BuddyPress redirect from default reg page
    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';
    }
    
    // Function to populate BP Profile Fields w/ S2member Fields.
    add_action('wp_login','s2_profile_field_update',10,2);
    function s2_profile_field_update() {
      global $current_user;
      //Array of xprofile field names
      $xprofile_fields = array('Last Name','Country','Introduce yourself to Aisha Salem');
      //Array of s2member field slugs
      $s2member_fields = array('last_name','user_country','member_letter_aisha');
      //Populates BP with S2 info
      get_currentuserinfo();
      // if( current_user_is("s2member_level1") ) {
           for($i = 0; $i < sizeof($xprofile_fields); $i++) {
              if(xprofile_get_field_data($xprofile_fields[i], $current_user->id) == '' && get_user_field($s2member_fields[i]) != '' )  {
                  xprofile_set_field_data($xprofile_fields[i], $current_user->id, get_user_field($s2member_fields[i]) );
               }
           }
      // }
    }

    After this, nothing has really changed. I am not sure about the details.
    Like:

    • Where exactly do I get the xprofile field names?
    • Where exactly do I get the s2Member field slugs?
    • Do I need to create these custom fileds with the same names in both BuddyPress and s2Members? (Which is what I have tried, so I am guessing no, or I am just doing it wrong…)

    So, as I understand it, with this code. I use the s2Member registration process and the next time the user loggs in, it is updated to their BuddyPress profile.

    Please let me know if I am not understanding this. AND PLEASE help me to understand how to do this correctly.

    Thank you so much!

    vaibhavyuvasoft187
    Participant

    <?php get_header( ‘buddypress’ ); ?>
    <!– MAIN SECTION
    ================================================ –>
    <section>
    <div id=”main”>
    <div class=”row”>
    <div class=”twelve columns”>
    <?php do_action( ‘bp_before_register_page’ ); ?>
    <div id=”register-page”>
    <form action=”” name=”signup_form” id=”signup_form” class=”standard-form custom” 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() ) : ?>
    <div class=”row”>
    <div class=”twelve columns”>
    <h2 class=”article-title text-center”><?php _e( ‘Create an Account’, ‘buddypress’ ); ?></h2>
    </div>
    <!–end twelve–>
    </div>
    <?php do_action( ‘template_notices’ ); ?>
    <p class=”lead”><?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>
    <br><br>
    <?php do_action( ‘bp_before_account_details_fields’ ); ?>
    <div class=”row”>
    <div class=”register-section six columns” id=”basic-details-section”>
    <?php /***** Basic Account Details ******/ ?>
    <h4><i class=”icon icon-user”></i> <?php _e( ‘Account Details’, ‘buddypress’ ); ?></h4>
    <br>
    <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=”<?php bp_signup_password_value(); ?>” class=”password-entry” />
    <div id=”pass-strength-result”></div>
    <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 bp_signup_password_confirm_value(); ?>” class=”password-entry-confirm” />
    <br><br>
    </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 six columns” id=”profile-details-section”>
    <h4><i class=”icon icon-comments”></i> <?php _e( ‘Profile Details’, ‘buddypress’ ); ?></h4>
    <div class=”check-group”>
    <div class=”col-md-4 col-sm-4″>
    <label for=”g1″ class=”g1″>
    <input type=”radio” name=”colorRadio” value=”first-section” id=”g1″ checked=”checked”> Algemeen
    </label>
    </div>
    <div class=”col-md-4 col-sm-4″>
    <label for=”g2″ class=”g2″>
    <input type=”radio” name=”colorRadio” value=”second-section” id=”g2″> Man
    </label>
    </div>
    <div class=”col-md-4 col-sm-4″>
    <label for=”g3″ class=”g3″>
    <input type=”radio” name=”colorRadio” value=”third-section” id=”g3″> Vrouw
    </label>
    </div>
    </div>
    <br>

    <section class=”first-section radio-section”>
    <!– <h1>Algemeen</h1> –>
    <?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=”<?php if(‘selectbox’ == bp_get_the_profile_field_type() || ‘multiselectbox’ == bp_get_the_profile_field_type() ) echo ‘six’; else echo ‘twelve’;?> columns”>
    <div<?php bp_field_css_class( ‘editfield’ ); ?>>
    <?php
    $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    $field_type->edit_field_html();

    do_action( ‘bp_custom_profile_edit_fields_pre_visibility’ );

    if ( bp_current_user_can( ‘bp_xprofile_change_field_visibility’ ) ) : ?>
    <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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </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>
    <?php _e( ‘Close’, ‘buddypress’ ) ?>
    </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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </p>
    <?php endif ?>
    <?php do_action( ‘bp_custom_profile_edit_fields’ ); ?>
    <p class=”description”><?php bp_the_profile_field_description(); ?></p>
    </div>
    </div>
    <?php endwhile; ?>
    <?php $fields_ids[]= bp_get_the_profile_field_id();?>
    <?php endwhile; endif; endif; ?>
    </section>

    <section class=”second-section radio-section”>
    <!– <h1>Man</h1> –>
    <?php if ( bp_is_active( ‘xprofile’ ) ) : if ( bp_has_profile( array( ‘profile_group_id’ => 2, ‘fetch_field_data’ => false ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    <div class=”<?php if(‘selectbox’ == bp_get_the_profile_field_type() || ‘multiselectbox’ == bp_get_the_profile_field_type() ) echo ‘six’; else echo ‘twelve’;?> columns”>
    <div<?php bp_field_css_class( ‘editfield’ ); ?>>
    <?php
    $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    $field_type->edit_field_html();

    do_action( ‘bp_custom_profile_edit_fields_pre_visibility’ );

    if ( bp_current_user_can( ‘bp_xprofile_change_field_visibility’ ) ) : ?>
    <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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </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>
    <?php _e( ‘Close’, ‘buddypress’ ) ?>
    </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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </p>
    <?php endif ?>
    <?php do_action( ‘bp_custom_profile_edit_fields’ ); ?>
    <p class=”description”><?php bp_the_profile_field_description(); ?></p>
    </div>
    </div>
    <?php endwhile; ?>
    <?php $fields_ids[]= bp_get_the_profile_field_id();?>
    <?php endwhile; endif; endif; ?>
    </section>

    <section class=”third-section radio-section”>
    <!– <h1>Vrouw</h1> –>
    <?php if ( bp_is_active( ‘xprofile’ ) ) : if ( bp_has_profile( array( ‘profile_group_id’ => 3, ‘fetch_field_data’ => false ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?>
    <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
    <div class=”<?php if(‘selectbox’ == bp_get_the_profile_field_type() || ‘multiselectbox’ == bp_get_the_profile_field_type() ) echo ‘six’; else echo ‘twelve’;?> columns”>
    <div<?php bp_field_css_class( ‘editfield’ ); ?>>
    <?php
    $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
    $field_type->edit_field_html();

    do_action( ‘bp_custom_profile_edit_fields_pre_visibility’ );

    if ( bp_current_user_can( ‘bp_xprofile_change_field_visibility’ ) ) : ?>
    <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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </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>
    <?php _e( ‘Close’, ‘buddypress’ ) ?>
    </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: %s’, ‘buddypress’ ),
    ‘<span class=”current-visibility-level”>’ . bp_get_the_profile_field_visibility_level_label() . ‘</span>’
    );
    ?>
    </p>
    <?php endif ?>
    <?php do_action( ‘bp_custom_profile_edit_fields’ ); ?>
    <p class=”description”><?php bp_the_profile_field_description(); ?></p>
    </div>
    </div>
    <?php endwhile; ?>
    <?php $fields_ids[]= bp_get_the_profile_field_id();?>
    <?php endwhile; endif; endif; ?>
    </section>

    <input type=”hidden” name=”signup_profile_field_ids” id=”signup_profile_field_ids” value=”<?php echo implode(“,”,$fields_ids);?>” />
    </div>
    <!– #profile-details-section –>
    </div>
    <?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><label for=”signup_with_blog”><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’ ); ?></label></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 site_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(); ?>” />
    <label><?php _e( ‘I would like my site to appear in search engines, and in public listings around this network.’, ‘buddypress’ ); ?>:</label>
    <?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” class=”button radius pull-right” 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() ) : ?>
    <h2 class=”article-title”><?php _e( ‘Sign Up Complete!’, ‘kleo_framework’ ); ?></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 class=”clearfix”></div>
    <br><br>
    </div>
    <!–end twelve–>
    </div>
    <!–end row–>
    </div>
    <!–end main–>
    </section>
    <!–END MAIN SECTION–>
    <style type=”text/css”>
    .check-group{
    width: 100%;
    margin-bottom: 70px;
    }
    .check-group .col-md-4{
    width: 20%;
    float: left;
    }
    .check-group label{
    background: none;
    padding: 8px 12px;
    border-radius: 5px;
    width: 60%;
    border:2px solid #d7b46a;
    color: #fff;
    }
    </style>
    <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’ ).change( function() {
    if(jQuery(this).is(‘:checked’)) {
    jQuery(‘div#blog-details’).fadeIn();
    }
    else {
    jQuery(‘div#blog-details’).fadeOut();
    }
    });
    });
    </script>
    <script type=”text/javascript”>
    // jQuery(document).ready(function(){
    // jQuery(‘input[type=”radio”]’).click(function(){
    // var inputValue = jQuery(this).attr(“value”);
    // var targetBox = jQuery(“.” + inputValue);
    // jQuery(“.radio-section”).not(targetBox).hide();
    // jQuery(targetBox).show();
    // });
    // });
    jQuery(document).ready(function(){
    jQuery(‘.second-section’).hide(‘fast’);
    jQuery(‘.third-section’).hide(‘fast’);
    jQuery(‘.first-section’).show(‘fast’);
    jQuery(‘.g1’).css({‘background’: ‘#d7b46a’, ‘color’: ‘#333’});

    jQuery(‘.g1’).click(function(){
    jQuery(‘.second-section’).hide(‘fast’);
    jQuery(‘.third-section’).hide(‘fast’);
    jQuery(‘.first-section’).show(‘fast’);
    jQuery(‘.g1’).css({‘background’: ‘#d7b46a’, ‘color’:’#333′});
    jQuery(‘.g2’).css({‘background’: ‘none’, ‘color’:’#fff’});
    jQuery(‘.g3’).css({‘background’: ‘none’, ‘color’:’#fff’});
    })
    jQuery(‘.g2’).click(function(){
    jQuery(‘.first-section’).hide(‘fast’);
    jQuery(‘.third-section’).hide(‘fast’);
    jQuery(‘.second-section’).show(‘fast’);
    jQuery(‘.g1’).css({‘background’: ‘none’, ‘color’:’#fff’});
    jQuery(‘.g2’).css({‘background’: ‘#d7b46a’, ‘color’:’#333′});
    jQuery(‘.g3’).css({‘background’: ‘none’, ‘color’:’#fff’});
    })
    jQuery(‘.g3’).click(function(){
    jQuery(‘.first-section’).hide(‘fast’);
    jQuery(‘.second-section’).hide(‘fast’);
    jQuery(‘.third-section’).show(‘fast’);
    jQuery(‘.g1’).css({‘background’: ‘none’, ‘color’:’#fff’});
    jQuery(‘.g3’).css({‘background’: ‘#d7b46a’, ‘color’:’#333′});
    jQuery(‘.g2’).css({‘background’: ‘none’, ‘color’:’#fff’});
    })
    })
    </script>
    <?php get_footer( ‘buddypress’ ); ?>

    Hi Ozy,

    I’m sorry to hear about the user registration spam…that’s a pain.

    Just a thought…but if you have used 5 major plugins to stop spam, you might want to look at any other plugins that might be interacting/conflicting and disabling the anti-spam capability. For example, one we ran into that disables anti-spam is “New User Approve”…are you using that by chance? (There are some others that accidentally do the same thing.) Or do you have any other plugins that interact with the registration process? If so, try disabling them.

    If you haven’t yet, you may want to try installing WP-SpamShield…it’s got very robust registration anti-spam. If you still have any issues after that, you can submit a support request and we’ll be happy to help you troubleshoot the issue and figure it out.

    – Scott

    #267823
    peter-hamilton
    Participant

    You can disable BP registration, then this is no longer an issue and the profile is still made the usual way.

    I have done it by adding the following code in my functions.php, btw coe is not written by me.

    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' );
    #266172
    allanvisitacion
    Participant

    Hi there,

    My site requires 2 user roles – ‘Female Subscriber’ and ‘Male Subscriber’. There are specific content restricted only to each role. On my BP registration, it allows them to choose gender as either Male or Female.

    Is it possible for me to:

    1. Modify the Activation Link to set the user as ‘Female Subscriber’ or ‘Male Subscriber’ based on their gender selection on the registration page?

    2. If not, can I allow them to select the role (‘Female Subscriber’ or ‘Male Subscriber’) in the registration page and disable email activation altogether so that they are automatically logged on. Because the activation link in the email sets the role back to the WordPress default which is ‘Subscriber’

    Thanks for your help!
    WP Version 4.7.5. BuddyPress Version: Came with SocialChef Theme

    #264877

    In reply to: messages not sending

    oga23
    Participant

    no. but i disabled all bp related plugins, ran all repairs available, activated them back and voila – they are sending. i just left bp coever photo and bp registration options deactivated. i did add translation and some code to sync with woocommerce. but regarding messages all is good now. regarding translations, it still doesn’t get all the strings.
    thank you.

    #264486
    ryanb898
    Participant

    I’m still sorting the confusion of the theme I bought that uses buddypress and a bunch of other things for its social features.. I’m working on the registration fields, I fixed a glitch from earlier in the week that messed up the way the theme would present login and register.. under buddypress in my dashboard now I’m trying to edit the profile fields section where I found a lot of great things to add to the registration process… I cant however fit any of them in my themes register box pop up.. each field scrolls down page as I add.. I know this is most likely theme related but anyone know how I can make them appear this way [email info, username][profile fields]

    instead of [ ]
    [ ]

    ill probably end up contacting my theme provider but figured id ask that^, the real reason I came here is to ask, if I remove all profile fields from the registration page.. how can I create a page for them to fill in after they register and have the info appear on their “base” info page… also is there a way to disable name change after registration?

    #264225
    beh333
    Participant

    Hi, thanks for this great plug in and community. I just installed BP 2.8.1 into my WP 4.7.2 site which runs on BlueHost. I cannot get the BP registration page to appear. In BP settings/pages, it indicates that registration uses the “Register” page, which exists and is an empty page. But when I attempt to view this page (http://arlingtonporchfest.org/test-site/register) I end up viewing the site’s home page and no registration appears. I have enabled “Anyone can register” in general settings (after not having this set correctly at first). I have tried deleting my registration page and recreating. I have disabled all plugins except BP. I get the same problem with standard 2015 and 2016 themes.

    Thanks for any help! A bit more technical info below

    There is nothing strange in my .htaccess

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /test-site/
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /test-site/index.php [L]
    </IfModule>
    # END WordPress

    and my error log file shows this, which does not seem helpful

    [25-Feb-2017 16:37:54 UTC] ERROR PostmanGoogleAuthenticationManager: invalid_grant processing response: Bad Request
    [25-Feb-2017 16:37:54 UTC] ERROR PostmanWpMail: Exception code=0 message=Bad Request(invalid_grant)

    #263504
    josselinl
    Participant

    Hi !

    FYI I use the last version of WP, BuddyPress and TML (Theme My Login).

    I use TML for login and register members to my blog and I use BuddyPress for showing profils member.

    I disabled Buddypress registrtion page but he show me an “error” in the admin pages (only in backend)

    The following BuddyPress active components are not associated with WordPress pages: Registration Repair

    Someone understand my probleme ? If yes can say me why or explain me how to solve that ?

    It’s not big problem…

    Thanks in advance !

    seppad2016
    Participant

    Hi,

    We’ve been experiencing problematic issues with BP Email notifications.

    As stated on the subject of the post, our BuddyPress installation went ok and each time a new user register. He’s been sent an activation mail (as the situation stated it).

    We are managing group members from the wordpress back-office. Actually, no action (except the registration/login) is performed client-side.

    We (the admin) invite as a member or promote any registered and activated user to any group. This action is performed in the back-office. As stated on the various Email Situations, the recipient should receive an email if the action is performed but this never happens.

    We eventually tried to disable plugins and resetting things but we’re out of luck. We also tried the following plugin BP Default Email Notification Settings Control Version 1.0.1
    to force email notification with no success.

    Thanks for any efficient help,


    Below our configuration:
    WP 4.7.2
    plugins :
    Advanced Custom Fields Pro Version 5.3.3.2
    Beautiful taxonomy filter Version 2.1.0
    BP Default Email Notification Settings Control Version 1.0.1
    BuddyPress Version 2.7.4
    Contact Form 7 Version 4.5.1
    Contact Form DB Version 2.10.26
    Intuitive Custom Post Order Version 3.0.7
    JS & CSS Script Optimizer Version 0.3.2
    mobble Version 1.6
    PDF Image Generator Version 1.5.0
    Theme My Login Version 6.4.6
    WP E-Mail Debug Version 1.1.0
    WP Maintenance Version 2.8.2
    WP Super Cache
    WPBakery Visual Composer
    Yoast SEO

Viewing 25 results - 101 through 125 (of 492 total)
Skip to toolbar