Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,551 through 1,575 (of 7,641 total)
  • Author
    Search Results
  • #263280
    danbp
    Participant

    Hi,

    BuddyPress follow your wordpress registration settings. Some other details can be found here:

    Registration

    Modifying the Registration Form

    #263278
    learntodesign
    Participant

    Hi there. Is there anyway to get all of the registration errors that occurred so that I can echo them?

    I am familiar with calling errors like this $bp->signup->errors[‘field_’ . $field_id], but is there any way that I can echo all the registration errors at once?

    #263277
    #263256
    tammy1999
    Participant

    That is just the Registration Link and I had already found that on Google. I need the button to be hidden so no one will click on it.

    #263253
    shanebp
    Moderator
    #263251
    tammy1999
    Participant

    I’m using the Login widget to login to Buddypress site. Is there a way to hide the Register button? They only need to login. TYIA

    #263246
    noobiestrikesagain
    Participant

    Hello everyone!

    I am trying to make a checkbox before ‘Account Details’ on registration page.
    Step 1.

    Is there any way so that when user click continue, Rest of registration page loads through AJAX or something?:
    Step 2.

    More like step registration?

    Here’s my code for step 1:

    function tos_register() {
    ?>
    <input type="checkbox" name="tos" value="termsandconditions"> By clicking continue you are agreeing to the <a href="">Terms and Conditions.</a><br>
    
    <div class="submit">
                        <input type="submit" name="signup_continue" id="signup_continue" value="<?php esc_attr_e( 'Continue', 'buddypress' ); ?>" />
                </div>
    <?php
    }
    add_action( 'register_form', 'tos_register' );
    
    function tos_intial() {?>
        <div class="register-section" id="profile-details-section">
           <?php 
        do_action('register_form'); ?>
    </div>
    <?php
     }
    add_action('bp_before_account_details_fields', 'tos_intial',20);

    I was able to code everything but I am not able to use break and continue in php with registration page. Maybe through Nonce? I shall be very grateful for your suggestions.

    Looking forward for replies.

    Thanks a lot!

    noobiestrikesagain
    Participant

    Hello everyone!

    I am trying to make a checkbox before ‘Account Details’ on registration page.
    Step 1.

    Is there any way so that when user click continue, Rest of registration page loads through AJAX or something?:
    Step 2.

    More like step registration?

    Here’s my code for step 1:

    function tos_register() {
    ?>
    <p><input type="checkbox" name="tos" value="termsandconditions"> By clicking continue you are agreeing to the <a href="">Terms and Conditions.</a><br></p>
    <div class="submit">
                        <input type="submit" name="signup_continue" id="signup_continue" value="<?php esc_attr_e( 'Continue', 'buddypress' ); ?>" />
                </div>
    <?php
    }
    add_action( 'register_form', 'tos_register' );
    
    function tos_intial() {?>
        <div class="register-section" id="profile-details-section">
           <?php 
        do_action('register_form'); ?>
    </div>
    <?php
     }
    add_action('bp_before_account_details_fields', 'tos_intial',20);

    I was able to code everything but I am not able to use break and continue in php with registration page. Maybe through Nonce? I shall be very grateful for your suggestions.

    Looking forward for replies.

    Thanks a lot!

    #263212
    danbp
    Participant

    I mentionned the front-end xprofile admin because you mentionned you want to delete some fields from “base” group. As site admin, you can access any user profile from front-end and modify the fields.

    As site admin, you have also the possibility to access those fields from within the admin dashboard, where you can physically delete xprofile fields…

    User Extended Profiles

    As i don’t want to login to dropbox to see your screenshot, i ignore what you mean precisely at this time… except “delete some fields” which is, so far, enough for me.

    FYI, any xprofile field goes on the registration page. And the fields themselves are in the admin under dashboard > users > xprofile fields

    #263211
    bsreverman
    Participant

    Hi Thanks for your reply but I’m not sure how the codex you sent me is helpful. I’m trying to set up the registration page as the admin – not edit those fields after the fact. Here is a screenshot of the backend of my user profile fields page. There is a button to delete fields, but no save button anywhere on the page. What am I missing.

    https://www.dropbox.com/home/Screenshots?preview=Screenshot+2017-01-27+19.54.00.png

    #263175
    shanebp
    Moderator

    Please use the support forum for that plugin –
    https://wordpress.org/support/plugin/bp-registration-options

    #263174
    adnanshahid402
    Participant

    Hello kindly tell me step by step how i use this plugin how i add registration form into my site through this plugin i install this bp registration option plugin and save general setting now tell me next what can i do after saving setti how registration page show on my site tell means

    #263167

    In reply to: Update user Role?

    psmorrow
    Participant

    Thanks for the explanation and insight danbp! I am not married to updating the user role with a function. The only reason I wanted to do it is because I’m using the events manager plugin and I don’t want basic members to have permissions that are determined using the role. And I’m open to other options….

    If i update the role with a function, I can avoid hiding a bunch of things using functions…which is easy enough….but my thinking was that updating the role was more efficient.

    I do want to do this automatically, because I want to grant users privileges during registration.

    Which do think is a better option: hiding a bunch of screen elements with a function based on the member_type attribute I created; or, updating the role at registration and have these element hidden automatically using the Events Manager plugin?

    Many thanks again!

    #263163

    In reply to: Update user Role?

    danbp
    Participant

    Hi,

    guess you confuse member types and user roles. MT where introduced to allow site owners to “categorize” their users. WP user role is slightly different, as it defines what user can do on a site, a kind of access management. So in brief, roles are independent from BP member types.

    MT and roles are also stored in different tables: MT in wp_terms and roles in wp_usermeta – with the denomination of wp_capabilities…

    By default, roles are automatically attibuted at registration level or manually by a site admin. Member types follow the same logic, under condition the xprofile component is activate.

    Now the question is: what do you want to do exactly after registration ? Change the role or change the type ?

    Roles can be affected from the admin user list page. I would recommand to not modify this behave at registration level, to avoid abuse by promoting fake user for example.

    MT can be changed from the xprofile admin interface. There is also this plugin for a more in depth management.

    Using a custom function is of course possible. But just to clarify, the one you give as example let’s suppose you have a need for bulk action over user status. Automated task is well and good, but in this case, why not attribute a higher role or type to all by default ?
    And if it is not intended for “all” (what i suppose is the case), do you have so many exception that you need such a function ? Can’t you do that manually ? Just my 2 cents. 😉

    #263075
    geektripp
    Participant

    Hello, I was trying to find out if I can change the edit.php page template hierarchy. I basically want to completely start over on this page so it won’t have the sidebar or anything like that. I’ve looked all through the hierarchy documentation. I’ve already done it with the registration page, but I can’t find anything on this one.

    Thank you.

    ongunjackal
    Participant

    Hi to all, we created a website and everything is fine till before open website test with closer people.. all the same. after filled all and click to submit button and 30*40 second waiting…

    There is anybody knows why this is happen?

    And note: we dont use buddypress messages and groups. thats why we deleted messages and groups database tables also. it can make any issue? or something else?

    Just everything is work fine all website between 1-4 second running. but in registration form open page mininmum 4-5 second. submit form 30-40second. thats really strange and we have only 2 days. hope somebody can help quick!

    Waiting your feedbacks. Thanks…

    #263002
    p_e_z
    Participant

    Hello,

    is it somehow possible to connect 3 different networks?
    For example:
    I have a network for region A, region B and region C.
    They all register on an individual registration form and have there own community.

    Sometimes user of region A wants to chat to people from region B. Is this possible?

    Thank you.

    justinwoodart
    Participant

    Whenever I click update on a group – it gives me an error saying “you can’t remove all admins”

    It has also added every member of the site to every group automatically. As admins, moderators and members. Users who were not actual members before this error still can’t access the group and are not shown as active in the group.

    I believe learndash triggered the issue. I had the course set to open and it adds every member to the course that is in the community. I accidentally removed myself from a group that I was the only admin on it seemed to trigger some kind of role change with regards to groups.

    Can anyone please help me as to how I would attempt to figure this out. Also – as new members join groups, the old members are no longer shown in the members list. Only the new ones. And on groups with no new members, it shows a list of every member in the site. The member counter shows the correct number in the front and back end.

    If you have any ideas, or know someone that I can hire please get in touch with me ASAP! New registration opened today and I need to sort this out. Thanks!

    catonezillion
    Participant

    Hi,

    Does anyone have any ideas or thoughts on how hard it would be to add the functions of WP Security Question to the Settings section of a members page? This would allow a member to select a security question and answer when logged in. Then as admin I would set could add the question to the login, registration, and password reset forms.

    This seems way beyond my capabilities but I’d like to know if could be accomplished by the average developer.

    Thanks

    Cathy

    #262826
    rhysewest
    Participant

    Hi all,

    I have customized the way Buddypress registers members by checking to see if the Display Name already exists. If a Display Name is found, I create a new WP error. The problem is, once the user changes their Display Name to something that isn’t found, the error persists when you get the success signup screen. I’ve tried manually clearing it, but not getting any results.

    A few details:

    Wordpress Version: 4.7.1
    Buddypress Version: 2.7.4

    I’d like to keep my site anonymous if that’s ok.

    Here is what I’ve done in the php files to achieve this:

    buddypress\bp-members\classes\class-bp-signup.php

    public static function add_backcompat( $user_login = '', $user_password = '', $user_email = '', $usermeta = array() ) {
        global $wpdb;
    
        $display_capture = sanitize_title($usermeta["field_1"]); //CUSTOM CODE
        $display_capture = ucfirst(strtolower($display_capture)); //CUSTOM CODE
    		
        $user_id = wp_insert_user( array(
        'user_login'   => $user_login,
        'user_pass'    => $user_password,
        'display_name' => $display_capture, //CUSTOM CODE
        'user_email'   => $user_email
         ) );

    wordpress\wp-includes\user.php

    function wp_insert_user( $userdata ) {
        global $wpdb;
    
        /*
        Lots of code before here...
        */
    
        if ( empty( $userdata['display_name'] ) ) {
    	if ( $update ) {
    	    $display_name = $user_login;
    	} elseif ( $meta['first_name'] && $meta['last_name'] ) {
    	    /* translators: 1: first name, 2: last name */
    	    $display_name = sprintf( _x( '%1$s %2$s', 'Display name based on first name and last name' ), $meta['first_name'], $meta['last_name'] );
    	} elseif ( $meta['first_name'] ) {
    	    $display_name = $meta['first_name'];
    	} elseif ( $meta['last_name'] ) {
    	    $display_name = $meta['last_name'];
    	} else {
    	    $display_name = $user_login;
    	}
        } else {
    	$display_name = $userdata['display_name'];
        }
    	
        //CUSTOM CODE
    		
        $display_name = ucfirst(strtolower($display_name));
    
        $display_name_check = $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->users WHERE display_name = %s AND user_login != %s LIMIT 1" , $display_name, $user_login));
    	
        if($display_name_check) {
    		
    	return new WP_Error( 'existing_display_name', __( 'Sorry, that display name already exists!' ) );
    		
        }
    
        /*
        Lots of code after here...
        */
    
    }

    This successfully checks for the existence of a display name already in the database. It displays an error like it should and doesn’t allow the user to register. Now the only issue, how to clear the error when the user changes the display name to something not in the database?

    As stated earlier, once the error occurs, it will persist through to the success message. I’ve confirmed that the error does not occur if the user selects a display name not currently being used on the first registration attempt.

    I appreciate your time and help, thank you.

    #262789
    luisa227
    Participant

    In my default registration page there are two forms: one of wordpress, and 1 of BuddyPress. I want to hide what BuddyPress, and I did, but as there is a “name mandatory field after have pressed the send button does not work because in fact lacks the coverage of this” name “field that I hid.

      I will then delete the mandatory field “name” from the registration page, or at least make sure that it is not mandatory add. How can I do this? thanks

    #262766
    Lars Henriksen
    Participant

    Hi

    #2, Buddypress Registration Options is doing the job for me.

    #262731
    djsteveb
    Participant

    @solomonsun – have you gone to:
    admin dashboard
    settings -> buddypress –
    then the tab near top: “pages”

    scroll down to registration and see which page is selected there? tried changing it and saving it, then change again and save again perhaps?

    Steve
    ps- this is not the netowrk superadmin dashboard, but the regular main admin dashboard if you are in multisite setup I think.

    #262728
    Solomonsun
    Participant

    2djsteveb the url is https://schoolhome.com.ng

    i only changed the wp page from registration to register

Viewing 25 results - 1,551 through 1,575 (of 7,641 total)
Skip to toolbar