Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 2,726 through 2,750 (of 7,642 total)
  • Author
    Search Results
  • klogan2
    Participant

    The page does refresh (when a required field is left empty), drops one or 2 of the values (like month & year in a birthdate field),,, but doesn’t show the error messages for any blank fields in the Profile portion of the form.
    Thanks for your suggestion,,, I’d say that’s probably way over my head,,,I might be able to do it ‘eventually’,, but I hope an easier solution comes up đŸ™‚
    Missing Error Messages in registration form

    #181983
    terraling
    Participant

    Thanks @godavid33.

    I’d like to fix this without having to resort to a custom sql query.

    BuddyPress is designed to do this (sort alphabetically by display name rather than username) correctly.

    In the relevant code, it checks to see if WordPress-BuddyPress profile syncing is enabled. If it is, it runs the query against the wp_users table rather than the wp_bp_xprofile_data table, because “the table is smaller and better indexed”. If syncing is disabled then it runs the query against the xprofile display_name field instead.

    I have fixed the problem by turning off syncing so that it uses the xprofile display name, so my question is, what does profile syncing do exactly and when/how does it do it?

    I presume it overwrites nicename in wp_users with the display_name from xprofile (anything else?), but in my case it is not doing so, it appears broken.

    If I could identify the when/how then I’d be able to see if it is something I’ve broken or omitted in, for example, my custom registration page.

    BackpackersUnion
    Participant

    VICTORY!!!

    Hiding in plain sight was,

    div class="register-section" id="blog-details-section"

    Which is the CSS #ID in the BuddyPress register.php file (Both files). So, to hide the “Blog Details” during registration I added,

    #blog-details-section {
    	display: none;
    }

    to my Child Themes style.css, which solved this lingering problem beautifully.

    #181927
    Mathieu Viet
    Moderator

    @dionnewilliams

    1. Do you use BuddyPress on a non multisite config ?
    2. Do you have a lot of members ?
    3. Do you allow registration ?
    4. If so and if you have an access to a MySql admin tool such as PhpMyAdmin, can you run this query :

    SELECT count(u.ID) FROM wp_users as u 
    LEFT JOIN wp_usermeta as um ON u.ID = um.user_id
    where u.user_status = 0 and um.meta_key = 'activation_key';

    ‘wp_’ might be to replace with the table prefix you may have customized in wp-config.php

    Once done can you share the result of the query in this forum ?

    meg@info
    Participant

    Check if registration is enabled in your WordPress settings.

    #181835
    @mercime
    Participant

    @sarahs91 there have been changes to both BuddyPress and WordPress. Have you done some basic troubleshooting like changing theme to Twenty Fourteen/Thirteen? If it’s still an issue, have you deactivated plugins other than BuddyPress to check which is causing conflict in your registration?

    #181791
    @mercime
    Participant

    @eddieb12180 Did you even try adding the styles I provided above? Of course you can make some changes in the registration page’s markup. Copy over the register.php file from https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-templates/bp-legacy/buddypress/members/register.php into yourchildthemefolder/buddypress/members/ folder and make the changes you want to html tags available there.

    #181744
    Mathieu Viet
    Moderator

    hi @livsy

    How were you doing before ? Once a user registered, you were changing the role before he activated his account ?

    Or are you choosing a role different than Subscriber in the WordPress setting (wp-admin/options-general) > New User Default Role dropdown field ?

    About the upgrade difficulties, were you using a plugin that was dealing with registrations, and if yes which one ?

    Thanks for your feedback.

    #181731
    Livsy
    Participant

    Hi! I have the same problem with admin rights. @boonebgorges ‘s fix helped me a lot. But I have another problem. This fix can’t help users which get a subscriber’s role after registration. I set an author role for all new members of my site in wordpress settings. But it had no effect.

    #181663
    Boone Gorges
    Keymaster

    @blankpoint Sorry for the troubles. The upgrade routine necessary for BP 2.0 is fairly large.

    I’ll work in the upcoming weeks on improving it, but in the meantime, a few things to try:

    1. Your memory limit issue is due to the fact that WP will not allow you to exceed 256M per pageload without explicitly saying you want to (regardless of your php.ini settings). You can put the following into wp-config.php to override for the admin only:

    define( 'WP_MAX_MEMORY_LIMIT', '1024M' );

    2. Just to get up and running, you might also consider running the heavy migration manually: from the mysql command line.

    INSERT INTO wp_bp_activity (<code>user_id</code>, <code>component</code>, <code>type</code>, <code>action</code>, <code>content</code>, <code>primary_link</code>, <code>item_id</code>, <code></code>
    date_reco
                      SELECT user_id, 'members' as component, 'last_activity' as type, '' as action, '' as content, '' as
                      FROM wp_usermeta
                      WHERE
                        meta_key = 'last_activity'
                        AND
                        user_id NOT IN (
                          SELECT user_id
                          FROM wp_bp_activity
                          WHERE component = 'members' AND type = 'last_activity'
                        )
            );
    

    You could split this up with a LIMIT clause in case you need to run it a few times.

    The other problematic bit of the upgrade routine has to do with migrating your old signups to the new signups schema. (I’m assuming you have open registration + non-multisite.) That migration is not necessarily mission-critical, so you could skip it altogether. So, in other words, once you’ve run the ‘last_activity’ migration, you could comment out line 351 and lines 355-395 here: https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-core/bp-core-update.php#L351 and then reload your admin to mark the migration as complete.

    Again, sorry about the difficulties. You’re running a very large BP site, and the migration tools were not up to the job.

    Then, you could comment out this line: https://buddypress.trac.wordpress.org/browser/tags/2.0/bp-core/bp-core-update.php#L351

    #181597
    Mathieu Viet
    Moderator

    @notpoppy Great! Sorry again for the inconvenience. I’m not sure User Role Editor deals with registration as it seems to be a role management plugin. But i’ll check it.

    #181591
    Mathieu Viet
    Moderator

    @notpoppy

    Do you have any plugins that deal with registration on your config ?

    #181577
    jessicana
    Participant

    Well, I did that and I have buddypress default registration page. The default registration page has the name as a required field and it can be seen by everyone, I am having problem with buddypress default registration page for many reasons:
    1) If you visit the default buddypress registration page, and leave all the fields blanks and hit complete sign up, you will only receive three red notifications for required accounts details as follows:
    a. Please enter a username
    b. Please check your email address.
    c. Please make sure you enter your password twice
    Although the name is a required field, but you don’t receive similar message for a required field, and if the user don’t fill the name, the page refreshes without asking the user to fill the name.

    2) Having the name as a required feild, will discourage users registration and I am not sure how to make it optional at the registration stage.

    Thank you

    #181570
    Mathieu Viet
    Moderator

    Hi @textrat

    I’m really sorry to read about this issue. I’ve run some tests to try to reproduce. This is the results of it:

    1/ “Confirm User Registration” doesn’t seem to interfere. The plugin is adding a user_meta “authentication” set to 1 for each users. When a user logs in it checks if this user meta is there and if so allow the log in, else display a message saying the account is not authenticated.
    2/ The only way i’ve managed to have a user_status set to 0 and the activation_key still in usermeta for this user was to set the user_status to 0 myself directly in the database (testing config WP 3.8.3, BP 1.9.2 > 2.0 and Confirm User Registration)
    3/ From the Manage Signups screen if i activate this kind of user (user_status 0 and activation_key not empty), i have the message that user is already activated, but the user is no more in the list of pending accounts and is now available in the users list with the default role
    4/ About the 152 pre-existing, the only way i’ve managed to reproduce a similar problem was to restart all again and to delete the value of activation_key meta in the database. eg : activation_key > “” : The meta is there but empty. In this case, the user keeps on being in pending after trying to activate it.

    I think clearing the “pending bit” can be achieve by updating the “active” field to 1 into the signups table for the 152 pre-existing users. But, before doing so, you should check the ‘activation_key’ meta values for some of the 152 users to see if the value is empty. This way it could confirm my point 4.
    Then you should check for the corresponding user_status to be sure it is not set to 2.

    Whatever you do, i advise you to backup your database before.

    #181527
    Texrat
    Participant

    Sorry to post again. The problem seems to be a conflict between the new “Manage Signups” function and another plugin. I thought maybe bbPress, but it could also be “Confirm User Registration” by Ralph Hortt: http://www.horttcore.de/

    Right now I cannot get any of 167 users out of Manage Signups. If I Activate someone, they remain there afterward.

    I deactivated “Confirm User Registration” and now plugins are all out of whack. I can’t even view the Plugins page. I need to disable all of them and start over…

    #181503
    Boone Gorges
    Keymaster

    @lchief – You might be onto something. This is supposed to be part of the migration tool to the new setup system. Can you share the following info:

    – Are you running WP Multisite?
    – What is your current registration setting?
    – Are you using any plugins (other than BP) that modify user registration in any way?

    #181488
    modemlooper
    Moderator

    Create profile field groups. Only the first group shows on the registration page.

    #181231
    sharmavishal
    Participant

    Did you install any social plugin? I guess not..else you would have known that the login with buttons are created automatically by the plugin…try the following social login plugin

    https://wordpress.org/plugins/wordpress-social-login/

    Regarding your main idea..you would need to do some custom stuff for that…as far as approval of users go use the following plugin…

    https://wordpress.org/plugins/bp-registration-options/screenshots/

    googling really helps though

    #181226
    ivarzLV
    Participant

    True, but how to create “Login with…” button who have feature that allows ONLY already registered site members log in with social profiles?

    Main idea – there is button for registration (will sent e-mails with invite links also), after registration site moderator will check and accept/decline. After that registered and approved user will have possibility to log in into website with his/her Facebook and Twitter profile but if user is not approved by moderator, user cannot log in with social profile.

    How to do this?

    #181164
    Henry Wright
    Moderator

    There are lots of social login and registration plugins in the WP plugin repo:

    https://wordpress.org/plugins/search.php?q=social+login

    #180967

    In reply to: Spam Overload

    Squirrel
    Participant

    Have you tried the WangGuard plugin? It’s supposed to be good stopping spam registrations.

    #180848
    simple-man
    Participant

    I do have the google captcha implemented on the registration form so that will help at least to make sure it is humans registering.

    Thank you.

    #180846
    Renato Alves
    Moderator

    I agree. I just think you will see an increase in spam registrations.

    #180791
    aussiemike
    Participant

    Thank Robert. I will take a look into this. I am sort of getting the hang of things with BP. I have Wishlist Member running on the site so registration is through a custom registration form, no BP registration. This has caused me some headaches because WLM does not integrate fully with BP.

    Thanks again for your reply and your time.Much appreciated.

    Mike

    #180785
    robertFudge
    Participant

    Hi Mike,

    I don’t think that you can entirely remove the xProfile name field from BuddyPress (Even with the plugin that is available). So I decided why fight it? I cloned the WP username. The only potential problem with this is that the WP username is public – I used a plugin to force stronger WP username and passwords to help with this.

    Here is the base of what I did:

    – On the registration form hide the xProfile name field (CSS display: none) and make a javascript listener (CHANGE) function to change the xProfile name field to the value of the WP username. This will take care of the form validation – xProfile name field is required. See reference…

    – For the edit your profile section I hide the xProfile name field, I also included a PHP function that made the value of this equal to the WP username, in the state that a user was added from the dashboard. (I did not provide PHP, I essentially grabbed WP logged in username…) – You can also display the xProfile name field input as readonly (add attribute: readonly).

    Now all xProfile name field instances in BP are the same as the WP user.

    Reference:
    jQuery(‘input#signup_username’).change(function () {
    jQuery(‘input#field_1’).val(jQuery(this).val());
    });

Viewing 25 results - 2,726 through 2,750 (of 7,642 total)
Skip to toolbar