Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,701 through 1,725 (of 7,641 total)
  • Author
    Search Results
  • #259830
    notapplicable
    Participant

    WP ver 4.6.1
    BuddyPress ver 2.6.2

    Members, activity, profile, are all empty…. Register redirects to something that doesn’t exist, despite setting a known page in the dropdown. Attempted to redirect to known page, via bp-custom.php -this moved it to the page, but it rendered entirely blank. Attempted re-install of buddypress – somehow it claims there’s everything deleted but magically retains all settings when installed again – tried several themes, See mention of “bp template pack” plugin in forum that’d reset it all up, but unable to locate it as an installable plugin…

    #259824
    bcanr2d2
    Participant

    My install has stopped sending any emails out for new user activation.
    I can receive emails sent by WordPress after a user is manually activated, and can receive any email from Postman SMTP, as these test emails work.

    I don’t use any other activity markers, but emails were not received when messages were sent either.

    I have tried all of the listed troubleshooting steps that others have gone through before.

    I have a custom function that creates a post for the user during the registration process. I have removed all custom functions and tried registering a user, and it still will not send any emails.

    As BuddyPress uses it’s own PHP Mailer, I am not able to log them via any WP Mail logging tools, and want to see what might be going on here.
    The problem reared its head around the time I upgraded to 2.6 (although the custom function during registration was also added at this time) as well

    I have reset the emails multiple times, and I have not made any changes to them.

    Could someone please provide assistance, or given me a suggestion on how to run the BP Email Debug code to get an email of any issues

    Host is Bluehost

    Here is my install, and plugin list

    WordPress 4.5.4
    BuddyPress 2.6.2
    Advanced Custom Fields 4.4.10
    Akismet 3.1.11 (inactive)
    BackWPuP 3.3.4
    BP Force Profile Photo 1.0.5
    BP Member Type Manager 1.0.1 (inactive)
    BP xProfile Location 1.2
    BP XProfile WordPress User Sync 0.6.4
    Broken Link Checker 1.11.2
    Buddy Progress Bar 1.0.2
    BuddyPress Conditional Field Groups 0.1.0
    Buddypress Conditional Profile Field 2.0
    Buddypress Geodirectory Integration 1.0.0 (inactive)
    BuddyPress Member Type Generator 1.0.2
    BuddyPress Profile Tabs 1.6.1
    BuddyPress Security Check 2.1.2
    BuddyPress Simple Terms And Conditions 1.3
    BuddyPress Xprofile Custom Fields Type 2.5
    BuddyPress Xprofile Member Type Field 1.0.4
    Cherry Parallax Plugin 1.0.0 (for my theme)
    Cherry Plugin 1.2.8.1 (for my theme)
    Conditional Profile Fields for BuddyPress 1.1.9
    Contact Form 7 4.5
    Contact Form 7 – Dynamic Text Extension 2.0.1
    Custom Hooks 1.0 (All my custom functions are in this plugin)
    Custom Login 3.2.5
    Custom Post Template By Templatic 1.0
    Custom Post Type UI 1.4.1
    Disable Comments 1.5.2
    Display Posts Shortcode 2.7.0
    Easy Parallax Slider 2.1.1
    FacetWP 2.6.4
    GEO my WP 2.6.6.1
    GeoDirectory 1.6.5 (inactive)
    Hello Dolly .1.6 (inactive)
    MOJO Marketplace 1.0.1 (inactive)
    MotoPress Content Editor Lite 1.6.5 (inactive)
    Quick and Easy FAQs 1.0.3
    SuitePlugins – Advanced XProfile Fields for BuddyPress 1.0.3
    Super Socializer 7.8.1
    WP Private Content Plus 1.11
    WPFront User Role Editor 2.12.4
    Yoast SEO 3.5

    ositive
    Participant

    Hi aaronthomas1979
    Thanks for yuor answer
    Absolutely yes! please share your code!
    I would like to do something a bit different, but I think that I should start from your code adapting it to my scope.
    What I exactly want to achieve: something like facebook do, that is to copy the full name (that is the only name the user will digit in the registration form) in the username (that must be automatically generated). The problem with this solution is that the username must be unique so I could insert a code like the following to insert a number at the end of the name making it unique:

    function username( $username){
    	$username = $username[0];
    	$j = 1;
    	while ( username_exists( $username ) ){
    		$username = $username . '_' . $j;
    		$j++;
    	}
    
    	return $username;
    }

    I think this is the cleanest solution: the users will insert the real name in the registration form, (without asking to change the full name inserted if another user with the same name is already registered) but a unique username is created silently anyway.
    Please share, hope to find a solution with yours o any other contribute
    Thanks
    Ositive

    metalhead
    Participant

    I have a function set up in my register.php that copies the user-supplied username (in the registration form,) copies it over to the “Display Name” field, and hides the display name field on the registration form. This way, whatever the user entered for username will automatically be used for his/her display name. (To avoid asking the user for a name 2 times!)

    Would you like to do this? If so, I’d be glad to share my register.php file with you. Let me know. If this is not what you need, then please disregard this message.

    #259800

    In reply to: Admin approval

    Venutius
    Moderator

    I’m not sure there is a plugin that covers both the WordPress and BuddyPress new member moderation. I remember I asked the BP Registrations Options developer for it to include moderation of the WordPress Access but he said it was outside of the remit of the plugin.

    #259798

    In reply to: Admin approval

    mimbelli
    Participant

    As you can imagine I’m a newbye and I’m trying to get the whole picture.
    I do not understand, one I installed BP who is in charge of user registration on the website?

    Bye

    #259793
    mimbelli
    Participant

    Hi all,

    Site with latest BP and WP. I have BBPress plugin installed with only sitewide forums and I need admin approval for new users. I saw there are several plugins but it seems that each of them manage just WP or BP.

    How I can prevent a user interacting with the whole site until he is approved by an admin?

    I saw the BuddyPress Registration Options plugin block the user until approval only for the BP area of the site.

    Thank you in advance

    #259782
    djdog123
    Participant

    Hello,

    I am working on a BuddyPress website at the moment and I am starting to fill out the accounts for the users that will join in the near future. I want to be able to create multiple accounts that will be given over to users once my website is near completion. Therefore, when registering these accounts, the email field and email confirmation should not be required. However, the email field should still be something that can be entered in once registration is complete.

    Is this possible? If so, please let me know how. Thank you.

    #259727
    metalhead
    Participant

    I’m using a plugin called Buddypress Xprofile Custom Fields Type.

    If I edit a profile field, Buddypress begins to malfunction by not letting a new user save his info entered into the register.php form.

    So if I delete all my profile fields, and then re-create them, Buddypress will begin to function properly again, but, then I create custom profile search widgets with a plugin called “Buddypress Profile Search,” and then the problem starts again. (User can’t save the data he entered. Registration page just refreshes.)

    #259605
    kida18
    Participant

    I thought about a plugin, but I’m using so many already! 🙂
    Plus, I need to limit the email domain registration only for one member type, not everyone, and I don’t see this option in the plugin.
    But thanks for the suggestion!

    #259596
    darklord236
    Participant

    I’m currently using wordpress version 4.6.1, and buddypress version 2.6.2. I am using the Gmail SMTP plugin. I have configured it correctly, and I can send test emails already. My problem is, Buddypress still won’t send activation emails. My question is, what is causing this problem, and how do I fix it?

    kida18
    Participant

    Hello!

    I would like to restrict the registration on my site to only a specific email domain, and only if the member type is X.
    My registration form includes the basic name/email/password fields as well as the buddypress base group fields, where the user can choose the member type (set up with plugin BuddyPress Xprofile Member Type Field).

    Browsing around I found the following code to validate the email domain:

       function is_valid_email_domain($login, $email, $errors ){
     $valid_email_domains = array("gmail.com","yahoo.com");// whitelist email domain lists
     $valid = false;
     foreach( $valid_email_domains as $d ){
     $d_length = strlen( $d );
     $current_email_domain = strtolower( substr( $email, -($d_length), $d_length));
     if( $current_email_domain == strtolower($d) ){
     $valid = true;
     break;
     }
     }
     // if invalid, return error message
     if( $valid === false ){
     $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using @gmail.com or @yahoo.com emails' ));
     }
    }
    add_action('register_post', 'is_valid_email_domain',10,3 );

    1) I tried replacing $valid_email_domains = array("gmail.com","yahoo.com"); with $valid_email_domains = (".edu"); but it didn’t work – I guess I should add a variable before it, to precise anything.edu as a valid domain? In a function, what would be the way to pass the “anything” argument? (I apologize if I don’t use the proper terms)
    Would it be “” ?

    2) I’ve tried checking how I could add one more validation argument, but I’m a bit lost.
    After checking around and in the register.php, I guess I should use something like :

    $membertype = $_POST ( 'type' => 'recruiter' )
     foreach( $membertype as $membertype ) {

    So, perhaps something like

    function is_valid_email_domain($login, $email, $membertype, $errors ){
     $membertype = $_POST ( 'type' => 'recruiter' )
     foreach( $membertype as $membertype ) {
    I don't know what to put here - how to link both arguments "if member type is "recruiter" and if email domain belong to the whitelist then proceed, if not give an error message"
        $valid_email_domains = (""".edu");// whitelist
        $valid = false;
        foreach( $valid_email_domains as $d ){
    	    $d_length = strlen( $d );
            $current_email_domain = strtolower( substr( $email, -($d_length), $d_length));
            if( $current_email_domain == strtolower($d) ){
                $valid = true;
                break;
            }
        }
        // if invalid, return error
        if( $valid === false ){
            $errors->add('domain_whitelist_error',__( '<strong>ERROR</strong>: you can only register using your .edu email address' ));
        }
    }
    
    add_action('register_post', 'is_valid_email_domain',10,3 );

    I’m probably completely wrong, I don’t know how to code, I’ve just tried putting several things I found together..but if someone has an idea on how I could make it work I would be very grateful

    #259584
    lemonsmcgee
    Participant

    How can I customize this email?

    Thanks!
    Tara

    #259577
    danbp
    Participant

    Hi,

    can be done from within the language file, if you want the message to be full part of the success message.

    The original string is here: bp-templates/bp-legacy/buddypress/members/activate.php:43
    Your account was activated successfully! Your account details have been sent to you in a separate email.

    or if you want to show persistent instructions, you can use one of the hooks available on the activation page: bp-templates/bp-legacy/buddypress/members/activate.php

    This will need a function like these:

    function my_registration_message() {
    echo 'My message text';
    }
    add_action( 'bp_before_activate_content', 'my_registration_message' );

    You can use same function to show a custom message on the register page, in wich case you use one of the existing hook in bp-templates/bp-legacy/buddypress/members/register.php

    For ex.
    add_action( 'bp_before_register_page', 'function_name' );

    Customizing Labels, Messages, and URLs

    mdarcangelo66
    Participant

    Hi, I need to know if there is a code or anything to advise the user after that he submit the registration ( so past the complete registration step ) that an email with a confirmation link has been sent in order to activate the account ect. because at this stage once the registration has complete it is usually redirect to the main page without further notice, as a confirmation email can go into the spam ect. so a text to remind of what to do or to check would be beneficial and so common really…

    Thanks

    Wordpress 4.5.4 | Buddypress 2.6.2

    #259546
    metalhead
    Participant

    I’ve painfully isolated the issue to Xprofile Custom Fields. After I make changes to the profile fields, the new user registration stops working. (Stops saving new user data – refreshes new user data screen instead of saving.)

    #259428
    richardpalfrey
    Participant

    Hi, i’ve recently installed BP and cant find a solution to changing the font size and style for the profile fields on my ‘register page’. My themes font controls only change the heading text. All help much appreciated!

    #259398
    limburgerer
    Participant

    Sorry in the top menu i want when your logout you see too registration?

    #259394
    metalhead
    Participant

    Thanks, and I went through the process, and then I re-installed Buddypress, but I’m still having the same problem. It’s when I click the button to save the new user info, and instead of proceeding to the next step (“Check your email for verification,” it’s just refreshing the new user registration form. It won’t let a new user get passed that screen.

    I read about someone else having the same problem, in this forum, but he never did describe how he overcame the problem. I’ve tried deactivating all buddypress related plugins, but no luck.

    I think the best thing for me to do is going to be to re-install WordPress from scratch, but do you have any other recommendations before I do that?

    Thanks.

    #259393
    limburgerer
    Participant

    hello i added buddypress offline registration in my menu but it doesnt show up?
    i select that everybody can registration

    login works perfect and when i activeted the toolbar(on top of the website) i can registration with succes.

    http://dutch-rebellion.nl/

    Hope you guys can help me out

    Greetz

    redpixelstudios
    Participant

    WordPress v4.6.1
    BuddyPress v2.6.2
    Sites are restricted to client employees, cannot provide link.

    We are running two separate BuddyPress sites, each on their own install of WordPress. Users are able to register for the site using BuddyPress register and activate pages.

    BuddyPress seems to be creating numerous duplicate pages each time a user registers. This is not expected and does not appear to be normal.

    In BuddyPress Settings > Pages, the registration pages are assigned as:
    Register: page name “Register” slug domain/register/
    Activate: page name “Activate” slug domain/activate/

    There are 150 pages named “Account Activated” with slug domain/account-activated-X, where X is the appended number of the duplicate.

    There are 270 pages named “Activate Your Account” with slug domain/activate-X, where X is the appended number of the duplicate.

    There are 422 pages named “Create An Account” with slug domain/register-X, where X is the appended number of the duplicate.

    There are 218 pages named “Check Your Email To Activate Your Account” with slug domain/register-X, where X is the appended number of the duplicate.

    In addition there are also several pages named with a user’s Profile Name and slug domain/profile-name, with numerous duplicate pages /profile-name-X; not all users have had pages created in this manner.

    Appreciate any considered thoughts on what is causing this or where we should look to resolve.

    #259313

    In reply to: Disable BP reg

    Ron Ashman
    Participant

    Hi Henry,

    Wow I didn’t expect an answer so quickly. Thanks!

    I wouldn’t feel comfortable opening a ticket because my understanding of developing is quite basic, and this is a free plugin so I’d feel greedy asking for things or “complaining”.

    Would you please tell me if it might cause any trouble if I leave those pages set as blank? I don’t mind the warning or might find a way to hide it.

    I tried setting private pages or assign a password, but they don’t show in the list or even if they’re password protected they still show the content (registration form).

    Disabling registration through BP would be the best option for me, I think.

    Thanks again, have a great day!

    #259311

    In reply to: Disable BP reg

    Henry Wright
    Moderator

    If I leave the registration and activation pages blank I get a warning all the time in the backend.

    The warning won’t cause harm but I agree you should be able to dismiss it. You could open a ticket on Trac for the core developers to take a look at?

    https://buddypress.trac.wordpress.org/

    #259310
    Ron Ashman
    Participant

    Hi,

    Because of reasons I am using another plugin for user registration (Gravity Forms).
    I still want to use BP for social features.

    If I leave the registration and activation pages blank I get a warning all the time in the backend.
    Can I disable registration through BP entirely?

    Thanks in advance!

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