Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,801 through 1,825 (of 7,641 total)
  • Author
    Search Results
  • #257486
    fail2reap
    Participant

    Hi there, I am trying to redirect a user who signs up using the buddypress registration form to a register confirmation page.

    I have tried numerous code snippets from across the internet and some simply added a white bar to the top of my website, others did nothing and I am still stuck for a solution.

    Is there anyone that could help? I am simply looking to redirect users to complete registration to be redirected to another page.

    Is it possible to maybe make this standard functionality in BuddyPress in the future? Seems like a lot of people are trying to do something like this.

    #257469
    coffeywebdev
    Participant

    This may be worth looking into? I’ve used it before, Gravity Forms is a great plugin with a lot of excellent add-ons.

    User Registration

    addon for plugin:

    Home

    yahya92
    Participant

    Hello there,
    I know that this issue has been posted somewhere before but as far as I saw this issue has not been resolved yet
    in fact I am surprised that buddypress does not include such important feature !
    I want conditional fields on my registration page based on a choice the visitor makes
    for example
    Your job: dropdown box contains {engineer, translator}
    if the visitor selects engineer another dropdown will appear with the following options {computer, civil} else the child dropdown will have {En to Fr, En to Chinese}

    risinghowcase
    Participant

    I am trying to add extra fields into my registration form using the following code into the functions.php file in my child theme (One Social). The code should capture the data for woo commerce to use at the checkout.

    //Adding Registration fields to the form

    add_action( ‘register_form’, ‘adding_custom_registration_fields’ );
    function adding_custom_registration_fields( ) {

    //lets make the field required so that i can show you how to validate it later;
    $firstname = empty( $_POST[‘firstname’] ) ? ” : $_POST[‘firstname’];
    $lastname = empty( $_POST[‘lastname’] ) ? ” : $_POST[‘lastname’];
    ?>
    <div class=”form-row form-row-wide”>
    <label for=”reg_firstname”><?php _e( ‘First Name’, ‘woocommerce’ ) ?><span class=”required”>*</span></label>
    <input type=”text” class=”input-text” name=”firstname” id=”reg_firstname” size=”30″ value=”<?php echo esc_attr( $firstname ) ?>” />
    </div>
    <div class=”form-row form-row-wide”>
    <label for=”reg_lastname”><?php _e( ‘Last Name’, ‘woocommerce’ ) ?><span class=”required”>*</span></label>
    <input type=”text” class=”input-text” name=”lastname” id=”reg_lastname” size=”30″ value=”<?php echo esc_attr( $lastname ) ?>” />
    </div><?php
    }

    //Validation registration form after submission using the filter registration_errors
    add_filter( ‘woocommerce_registration_errors’, ‘registration_errors_validation’ );

    /**
    * @param WP_Error $reg_errors
    *
    * @return WP_Error
    */
    function registration_errors_validation( $reg_errors ) {

    if ( empty( $_POST[‘firstname’] ) || empty( $_POST[‘lastname’] ) ) {
    $reg_errors->add( ’empty required fields’, __( ‘Please fill in the required fields.’, ‘woocommerce’ ) );
    }

    return $reg_errors;
    }

    //Updating use meta after registration successful registration
    add_action(‘woocommerce_created_customer’,’adding_extra_reg_fields’);

    function adding_extra_reg_fields($user_id) {
    extract($_POST);
    update_user_meta($user_id, ‘first_name’, $firstname);
    update_user_meta($user_id, ‘last_name’, $lastname);
    update_user_meta($user_id, ‘billing_first_name’, $firstname);
    update_user_meta($user_id, ‘shipping_first_name’, $firstname);
    update_user_meta($user_id, ‘billing_last_name’, $lastname);
    update_user_meta($user_id, ‘shipping_last_name’, $lastname);
    }

    The code works fine until Buddypress is activated. The it just reverts to the usual wordpress log in with only the profile fields that are shown in the “Profile Fields” tab on the wordpress dashboard.

    I feel like I must be missing something obvious but it is driving me crazy! Any help would be enormously appreciated. Thanks!

    cypherinfo
    Participant

    I am committed for an NGO project to implement (in an already existing website) the following functionalities:
    New members:
    1.would have a registration form for entering their complete profile;
    2.will have a front-end dashboard; with the ability to edit their profile;
    3.registration details would be fed into their profile and included in a general membership directory viewable to website visitors.
    I am new to buddypress and I wonder if and how it is capable to do them; any tip is the welcome 🙂

    wadece1979
    Participant

    I am currently using the GameDay theme and after installing buddypress I now have two pending lists when I go to my users. this is causing issues with my registration process. I tried switching themese and still have pending link show up twice.

    I have attached a screenshot here.

    I also have deactived all other plugins except buddy press.

    Can anyone help point me in the right direction as to what would be the cause here ?

    It is not going to their spam either…. Just not emails going out. I notice the weird two Pending list when i go to the users page which I do believe is the reason.

    Now I am just unsure why it would be showing two.. If I deactive the bbpress plugin things go back to one pending list and all work’s ok.

    Once I reactive Buddypress. Things stop working

    Many thanks in advance

    #257271

    In reply to: Activation email

    wadece1979
    Participant

    I have the same issue … using the latest bbpress 2.6.2 along with latest wp install and using GameDayTheme.

    Having issues with pending users list……

    I am currently using the GameDay theme and after installing buddypress I now have two pending lists when I go to my users. this is causing issues with my registration process. I tried switching themese and still have pending link show up twice.

    I have attached a screenshot here.

    I also have deactived all other plugins except buddy press.

    Can anyone help point me in the right direction as to what would be the cause here ?

    Many thanks in advance

    #257266
    wadece1979
    Participant

    Having issues with pending users list……

    I am currently using the GameDay theme and after installing buddypress I now have two pending lists when I go to my users. this is causing issues with my registration process. I tried switching themese and still have pending link show up twice.

    I have attached a screenshot here.

    I also have deactived all other plugins except buddy press.

    Can anyone help point me in the right direction as to what would be the cause here ?

    Many thanks in advance

    #257162
    Ron Ashman
    Participant

    WP 4.5.3
    BP 2.6.1.1
    Flatsome theme 2.9

    Hi,

    I used to use Gravity Forms with the user registration addon but that doesn’t seem to be working anymore with latest BP, so I will be using only BP to display the form. My GF license has expired and I’m not 100% happy with it.

    * I haven’t been able to find someone who needs placeholders, or maybe I didn’t search correctly? I’d like to display tips in the field itself, not outside.

    * And I have a field with a drop down menu of +100 options and I used to let users search for their option by typing in some letters so it would decrease the amount of options to scroll. Any chance I could do this in BP?

    I guess this involves some simple coding which I don’t know how to do. So if there’s anyone reading who’d like to post this as a job in wp jobs I’d be glad to take a look at it.

    Thanks in advance!

    #257152
    Daragott
    Participant

    Hi, I ve installed the registration but I have a problem with the design. The group activity rectangle is not well placed in the page,, you can check the look at this address: http://www.vodoudolls.com/registration/

    How can I resolve this problem? Thanks

    Norman

    Print Screen

    #257103

    Topic: Login Redirect

    in forum Showcase
    SophieVerlinden
    Participant

    Hi,

    I created a website using a buddypress theme called socialize, but some things aren’t working. The register & activate pages are blank, the login and register button in the menu above are not showing and the buddypress registration widget doesn’t show either.

    Concerning the blank pages I have already read a few topics online and did some checks:
    – the anyone can register button is selected
    – the register.php and activate.php files are not missing in the buddypress files
    – the pages do exist but are blank, and in the buddypress settings they have been assigned as register and activate pages.

    The only thing I haven’t done is strip everything down; deactivate all the plugins and switch to default theme. I could do that, but do I lose configuration I already did to my theme now? I don’t want to lose work.

    Can anyone help me? It’s driving me crazy.

    Thanks

    jaynation
    Participant

    Good Morning All,

    I have searched the BP forums and YouTube for a solution here but no luck…

    I have built my community based website with some help from a front end developer and I am almost ready to launch but I have a couple of outstanding issues with Buddypress/WP/S2 Member. I desperately need help with please.

    The site is not yet live so I cannot include a link:

    WP – 4.5.3
    BuddyPress 2.6.1.1
    All other plugins are updated to latest versions.
    Theme: MSocial

    1. When I test and register a user/member they should be on 1 of 4 named levels (through S2 member) (not pro)…however they are being defaulted to BASE and not level 1-4.

    2. When I go to edit the user profile I am presented with all the user groups in addition to the Base group which will confuse users.

    Barring this logging in/out and registration all works. I am not a website designer or developer but I have got this far please can anyone help?

    I would really appreciate some support here…many thanks.

    JP

    #257086
    thilina82
    Participant

    Oops sorry…. I found the error.

    I have changed the wrong register.php

    Earlier I have changed “/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php

    Changing the text in the following register.php solved the problem

    /public_html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php“.

    #257084
    thilina82
    Participant

    Hi,

    I am new to wordpress and launced a buddypress site recently.

    I want to customize the registration confirmation text and the text on the top of registration page “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.”.

    I changed and saved both text in the register.php file but no effect. Register page still shows the old Text. I tried deactivating BuddyPress and re-activating again. even that did not help.

    I am using BuddyPress 2.5.3 with BuddyBoss theme version 2.1.3

    Appreciate your help to solve this. Thanks in Advance.

    Thilina.

    #256996
    znitsarn
    Participant

    WordPress 4.3.5
    BuddyPress 2.6.1.1
    Issue happens with all themes, including default.

    Emails are not sending when a user registers, but if I go into wordpress users and resent email then it does it.

    Tried two “test email” plugins so far and both work.

    Any idea what it could be?

    #256978
    Slava Abakumov
    Moderator

    BuddyPress registration page is quite big, it has a lot of inputs.
    You can install a widget, called (BuddyPress) Log in. Here is info about it.
    If you use Jetpack, there is a module there, that gives ability to define widgets visibility. Here are other plugins: one, two & etc.
    Thus you will have ability to define, that this widget should be displayed only on Registration page in sidebar (or any widget zone that is defined in your theme).

    Or you can manually edit BuddyPress template files and include a shortcode or PHP code to display a login form in any place of your registration page. See docs for that.

    #256975
    #256944
    rezza72
    Participant

    hi
    There was no problem with toolbar and was previously displayed. But it does not show.
    I mean, from the toolbar, it is a bar for login and registration.

    crawlinson
    Participant

    Hi, I have just updated to the latest version of BP and thought I would add visibility conditions to my registration forms. Everything looked great until I noticed the following error:

    One field asks for your age, if you type a value less than 18 it is meant to ask for parental consent but for some reason any value between 1 and 10 completely ignores this rule.

    Numbers 0, 1 and 10-17 all work but single figures (not including 0 and 1) refuse to show the parental consent option.

    My settings are: Hide current field if age field is > 17
    I also tried: Show current field if age field is < 18

    Both have exactly the same issue. I have even tried reinstalling.

    Has anyone else had a similar issue? From my searches I feel as though I’m alone here..

    #256805
    Earl_D
    Participant

    I sue this one which has options to limit all the BP components to registered users and has the added optional feature to approve all registrations. The only thing doesn’t lock pages just BP features.
    https://wordpress.org/plugins/bp-registration-options/

    #256801
    danbp
    Participant

    Spam is an endless discussion on the web over years. Search this forum, you’ll find many topics.

    Half of my users registrations are reported by buddypress like a spam.
    The question is why ? Aside, note that it is WP who controls the registration, not BuddyPress.

    Do you use Askimet or some other plugin who controls your registry ?

    So I think it’s sufficient? no?

    Simply ? NO !

    Captchas are helping to determine a human activity, but generally don’t spam users.

    Many spam bots go through captcha and many other goes directly to your db. And many many, if not all, can send emails !
    Spammers are even cleverer as most door keepers, it’s a sad fact and a great part of that “sport” to prove it continuously.

    Here some common tasks explained to avoid spam and other unwanted content on your site. Note that one of the first thing to do is to use another table prefix as the universal knowed wp_ !

    #256798
    papuche
    Participant

    Hi,
    Half of my users registrations are reported by buddypress like a spam. But they’re human user. They send me a mail (with my contact form) to ask me to activate their account.
    So I need to manually valid their registration.

    I use BuddyPress Captcha by Hardeep Asrani. So I think it’s sufficient? no?

    Is there a solution to disable the spam buddypress feature?
    Thanks a lot!

    Fred.

    danbp
    Participant

    On a default single install, all users can access their credentials via your-site/wp-admin/profile.php

    From there they have access to the WP fieldss and to the extended profil fields.

    From there, they can change email & password.

    Admitting you closed admin access to all users, the only other way for them to modify there email and password is to use the “forgotten your password ?” at loggin stage.

    All this is not really a BP thing, but how WP is working since 2003.
    The 3 mandatory field (username, email and password) belonging exclusively to WP. They are showed on registration, ASIDE BuddyPress custom fields. BP doesn’t exactly handle them, it only show them. And as these fieds are WP territory and a bit sensible, they are not accessible from within frontend profile settings.

    Guess the word “critical’ is a bit exagerated. Not every user change his mail or password every day. How long do you wait for a new phone number or new electricity supply ? Probably more critical things as a mail/password change !

    #256785
    sharmavishal
    Participant

    check this @daragott …. danbp has given live examples

    2.2 Member Types – Setting user member types during registration (xProfile)

    this is a paid plugin

    BuddyPress Member Types

    this is a free plugin by brajesh

    BuddyPress Xprofile Member Type Field

    just google “buddypress member types” this would be in top 10 results

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