Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 251 through 275 (of 7,641 total)
  • Author
    Search Results
  • supercreative
    Participant

    (1) I’d like to add a feature to the registration page, where users are required to add their address, This address’s GeocoderResult will be stored in the database, as well as parsed to ‘Country’ and ‘Neighborhood’.

    (b) When users successfully logged in, I’d like the data presented to them on all pages to be only from other users with the same city and neighborhood.
    As an admin, I’d like to be able to change the query to customize based on City to include or not the neighborhood.

    I would appreciate it if you could let me know if it’s possible.

    #324294
    tazar64
    Participant

    Hi

    How can I find the meta names of the extra fields on the extended profile? I create extra fields but I don’t know their names, just id and group_id.
    I need meta names so I can use other plugins for registration, for example, or for PODS.
    By the way, PODS doesn’t seem to see the extended profile fields anywhere…

    #324214
    oumz99
    Participant

    This has the potential to cause huge amount of spam on your site. I am not sure why would you want to disable this as this is an industry standard, also helps in confirming emails and communication.

    p.s : In a commercial theme I use WPLMS, it has this feature of custom registration forms where this checkbox to disable account activation and log the user in automatically.

    tmuc
    Participant

    Hi, I installed BuddyPress on my site earlier today and now I can’t log in to my administrative account from the frontend of my site. When I try to login, I get sent to a page requesting an activation key. Unfortunately, I don’t have an activation key, nor was I ever sent one (I checked my emails and SPAM), so I can no longer sign in.

    I use the Paid Memberships Pro plugin to handle registration and membership levels on my site. Normally this works well. I also installed and activated bbPress and the PM Pro add-ons to integrate with BuddyPress and bbPress respectively.

    Any advice on how to fix this?

    #324135
    epgb101
    Participant

    Hi..
    I have had the fantastic Buddypress working perfectly for a year on a folder install of WP (not multisite) like; http://www.mysite.com/wordpressandbuddypressinstall/register/.

    But I discovered for the last week people are no longer able to register (it just returns you to /register page). I disabled ALL plugins did not fix /register – HOWEVER disabling Buddypress plugin (and all other plugins) does allow registration on plain WordPress. I tried registering on Buddypress on different browsers / different PCs / using 20-19 theme etc but nothing fixes it.

    Q: does anyone have any suggestion as why /register may have stopped or how to fix?

    ps – I have Settings > Anyone can register [x] on and permalinks set to Post name

    Thank you in advance.

    #324114
    epgb101
    Participant

    Hi there..
    My BP site worked perfectly – a little slow so I added Cloudflare – but it stopped emails. So I reset DNS to how it was before and removed Cloudflare plugin and now I still have the registration page but no body can register. Did anyone discover the fix?

    phillykish
    Participant

    Hello!

    I need to create a pop-up to register new members to my platform. I have this setup as a registration page currently. It works great there.
    I was trying to figure out how to create this as a pop-up, but not sure how. I am using the pop-up feature in elementor pro. Thanks!

    -Kish

    Nitin I.
    Participant

    Hi ,

    Please help me with this, I am stuck here,

    After the user enters details for registration and after clicking ” Create Account” button on registration form, a new window pops up saying ” Before you can login, you need to confirm your email address via the email we just sent to you”. Here the font colour is white with white background so not visible. I wish to change the font colour appearing in this popup window.

    Plateform Buddyboss

    Thank you

    #323933
    justiceletsoalo
    Participant

    Hello good people,

    On Registration Page, how can I move Profile Details to the top and move Account details to the bottom.

    it feels weird to start registering by entering username and password before personal details

    #323912

    In reply to: Get group ID from slug

    resortstylebeanbags
    Participant

    I don’t know why, but I have found a solution. As ‘check_slug’ worked, I just took the code from that function, amended it to return the group id instead of the slug, and included it in my function – which worked. Be good to understand why none of the other functions worked though?

    
    function ofc_add_registrant_to_group($registration, $old_STS_ID, $new_STS_ID, $context) {
      
       global $wpdb;
     
       $user_id = get_current_user_id();
    
       if (! $registration instanceof EE_Registration ) {
            // No EE_Registration, get out
            return;
        }
       
        $event_id = $registration->event_ID();
        $subgroups = get_field('event_sub_group', $event_id);
    
        $slug = $subgroups[0]->post_name;
    
        // These two lines made the difference
        $bp = buddypress();
        $group_id = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$bp->groups->table_name} WHERE slug = %s", $slug ) ); 
    
        if ( ! groups_is_user_member($user_id, $group_id )) {
           groups_join_group($group_id, $user_id);
        }
    }
    add_action('AHEE__EE_Registration__set_status__to_approved', 'ofc_add_registrant_to_group', 10, 4); 
    
    #323909

    In reply to: Get group ID from slug

    resortstylebeanbags
    Participant

    I have set up an Advanced Custom Field that is linked to the event, and the admin sets the group that the user should be added to on registration for the event. The field is called event_sub_group and it returns a WP_Post object. From that, I can get the slug of the group in the post_name. I was then trying to get the group ID using the slug, so I can add the user to the group. This is my current code.

    /Add user to buddyboss group when they register for an event
    function ofc_add_registrant_to_group($registration, $old_STS_ID, $new_STS_ID, $context) {
      
       global $bp, $wpdb;
    
       $user_id = get_current_user_id();
    
       if (! $registration instanceof EE_Registration ) {
            // No EE_Registration, get out
            return;
        }
       
        $event_id = $registration->event_ID();
        $subgroups = get_field('event_sub_group', $event_id);
        $slug = $subgroups[0]->post_name;
        
        $group_id = BP_Groups_Group::group_exists( $slug );
                 
       if ( ! groups_is_user_member($user_id, $group_id )) {
            $bp->groups->current_group = groups_get_group(array('group_id' => $group_id));
            groups_join_group($group_id, $user_id);
        }
    }
    add_action('AHEE__EE_Registration__set_status__to_approved', 'ofc_add_registrant_to_group', 10, 4); 

    BP_Groups_Group::group_exists( $slug ) returns nothing. If I use BP_Groups_Group::check_slug( $slug ) – it returns the correct slug name as expected.

    vtuncheff
    Participant

    Hi all,

    Can anyone tell me how I go about disabling the auto generation of the strong password on the registration form?

    The users of my site are not very tech savvy and they tend to register without taking note of the password then have to reset it.

    I get daily complaints…

    The password strength notices are fine so that isn’t a problem.

    Many thanks in advance!
    Vtuncheff

    #323876
    siyahperde
    Participant

    Its related with “BP Registration Optinos” plugin:

    BuddyPress Registration Options

    When i close it, the problem goes away…
    I hope someone fix the plugin. It was very useful.

    #323859
    giuseppe2016
    Participant

    Hello friends,

    i’m creating a wide social with Buddypress.

    Having already considered all the security measures regarding wordpress (first of all registration), which are the way or best practices to avoid maliciuos code injected via publishing a post by a member (that is not manual approval of any commment of course)?

    Example: dedicated plug-in, limitation of some symbol as “bad word” (i have plugin) or others.

    Many thanks,

    Giuseppe

    #323832
    anjanphukan
    Participant

    When the checkboxes are selected at the time of registration, they are stored in “bp_xprofile_data” table like this:
    IMG-20220312-WA0000

    #323782
    jetpackrabbit
    Participant

    Hi all,
    I have implemented member requests as per this guide after a large number of spammy registrations and spoof email addresses:

    Alternative Registration Workflows


    It seems to work well in that it doesn’t seem to generate the confirmation email address, but allows me to approve instead.
    The problem is that when I choose to delete the request, BuddyPress tries to send an informational email to the spoof email address to inform them their request has been denied:
    “Sorry, your request to join the site “My BuddyPress Site” has been declined”
    How can I prevent these unnecessary emails being generated?
    Thanks
    Kevin

    julioms64
    Participant

    Hello,
    We have an extranet-intranet web using WORDPRESS 5.9.1; BuddyPress – Version 10.1.0 and Paid Memberships Pro Version 2.7.5

    The member directory is viewable without registration,

    Miembros


    but clicking on the profile of any member redirects to the registration page, although the profiles are made visible to all public.
    What could I do to make the profiles public, without the need for registration.
    Thank you very much for your help
    Julio

    #323714
    zcc
    Participant

    Why there is no message after registration like this:
    https://prnt.sc/BhXgETtVlOZ1

    I deactivated almost all plugins and switched to storefront theme, still like this

    #323683
    menni50
    Participant

    Can I use any registration form plugin to create a members registration form? If the answer is positive, How can the values from the compatible custom fields of group, group type, and user type, are set to the WordPress user profile? Is it possible to create groups from the frontend by registered users?

    #323644
    OTCAtheist
    Participant

    I was checking to make sure the Registration Request feature was working and to see what it looked like, and noticed that the text entry fields aren’t labeled, which could easily confuse someone.
    I’m not sure where to find my WordPress version #, I just installed the current BP plugin.
    My site link is OTCAtheist.com
    Screenshot of Registration Request page. https://imgur.com/a/bdQsfW3″

    #323593
    mihaylovra
    Participant

    Hello!

    Please tell me how you can hide profiles without photos in the carousel and user directory.

    Unfortunately, everything that is offered in the old themes does not work for me.

    I have a dating site, and I would like to hide users without avatars.

    The BuddyPress Profile Completion plugin is installed, which necessarily requires uploading photos, but still there are users who have abandoned registration and have not uploaded photos.

    Help please.

    #323484
    justme
    Participant

    I am building an eLearning website and I am using BuddyPress to manage the community. I have created two member types “Student” “Instructors”. Please, I want to make the student the default member type that will be assigned to every user upon registration. How do I achieve that?

    I also want a situation where anyone given the instructor role can automatically be assigned to the instructor member type.

    #323435
    jamiebolddev
    Participant

    Hi,

    If i send a user to mywebsite.com/register/?pin=90822

    is there any way to automatically fill a field named ‘onepin’ with the pin 90822 (or what ever is added to ?pin=

    I am using buddypress extended profile fields

Viewing 25 results - 251 through 275 (of 7,641 total)
Skip to toolbar