Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 126 through 150 (of 7,641 total)
  • Author
    Search Results
  • #332027
    emaralive
    Moderator

    @sbanner26, my apologies for not posting this sooner, I was contemplating various scenarios based on the limited information provided and not having access to the BP Member Export Import plugin (it doesn’t reside in the official WordPress plugin repository). That stated, let’s see what you think about the proposed:

    This solution is an attempt to mitigate risk for updating a user’s registration date by utilizing a WP plugin known as Edit Registration Date. This plugin adds an editable text box to each user’s profile page, as can be seen in the following screenshot:

    screenshot

    This plugin is located in the WP plugin repository at the following URL:

    Edit Registration Date

    The author of this plugin has only tested up to WP 6.2.3; meaning, I’m not sure why the author hasn’t tested, as of yet, to the current version of WP. As an aside, I tested it with WP 6.4.1 and it works as advertised. The plan would be to install stated plugin on both sites, perform a copy & paste and then update profile for each user. After completion, you can discard this plugin,, if you choose to do so. Albeit, this is a manual effort but, to reiterate, it presents the least amount of risk for updating a user’s registration date.

    Having stated the previous, this now brings up the subject as to where the fault lies with the BP Member Export Import plugin by Wbcom Designs, if any. Was it a setting that needed to be set, i.e., use original registration date or make the dates all the same? Or, is it an actual bug? If it is a bug then, this bug should be reported, as such, to Wbcom Designs by someone who has actually witnessed this anomaly.

    Furthermore, you may be able to determine in which process the fault, if any, may exist since there is, apparently, a 2 (two) step process, e.g., export and import: meaning, if you import the CSV file into a spreadsheet (MS Excel, OpenOffice/LibreOffice Calc or Google Sheets) the column that represents “registration_date” (the actual DB column name is “user_registered”) will indicate whether the dates are correct or not. If the dates are correct then the export process is not at fault and if the dates are not correct, you can infer that a fault may exist with the “export” process.

    If by chance and assuming the dates are incorrect as indicated by the spreadsheet, the dates can be manually corrected in the spreadsheet and then save/export the corrections as a CSV file then, utilize the import feature of BP Member Export Import plugin. Note: The video for this plugin shows that there is a checkbox “Enable checkbox to update existing users data” thus, you should enable the checkbox since you have existing users.

    Last but not least, there are other solutions that are applicable but, I’m not sure they are worth the effort (that is, my effort) to convey at a practical level given that your situation isn’t one that occurs on a regular basis, at least I would hope not, however, if this proposed solution is not practical, I may reconsider my position on this. Additionally, if this is truly a fault that lies with the BP Member Export Import plugin by Wbcom Designs then, reporting this fault to the developers of stated plugin would allow them to fix this fault and then you could use the new version to repeat the export/import process but this time it would work, given that no new bugs/faults were introduced.

    #331989
    aktivbuerger
    Participant

    Hello,

    we use BuddyPress Version 11.4.0 with WordPress 6.4.1.

    Users should register here: https://www.campusaktiv.de/registrieren/

    Actually there’s the problem that the page only reloads after pressing the submit button (“Registrierung abschließen”). Nothing happens, no forwarding to activation page or system message.

    Can someone help us please?

    Kind regards,
    Regina | Stiftung Aktive Bürgerschaft

    vasilkovsky
    Participant

    Hello guys.
    I’m working on creating users based on data from API response and everything is working fine, but I noticed database errors in debug.log, investigated and found it was related to wp_create_user() and bp_core_map_user_registration() conflict. bp_core_map_user_registration() hooked into user_register and is working with xprofile fields and leads to Warning: Undefined property: BP_XProfile_Component::$table_name_data and WordPress database error: [You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ‘.
    Commenting this action resolved issue.
    Any ideas how to fix this? Because 4 WordPress database error for 1 user creation is too much, and one API cycle is creating 100 users on my website..

    #331856
    zoddshop63
    Participant

    How can I deactivate activation email and make wordpress activate users automatically.

    Also can I have users autologged in after filling our registration form?

    #331844
    bentamin
    Participant

    Hi, I have managed to get a xprofile field (checkbox with three options) to be displayed with a count as tabs next to the “all members” tabs. It’s similar to what @danbp hast done and is working in this Post: 2.2 Member Types – Setting user member types during registration (xProfile)

    Now I am stuck with the filtering of the members-list according to the Tabs when I click on one of the tabs.

    Maybe someone can help me out here.

    Here is the code for creating the tabs so far:

    Function for getting the child values of my checkbox for each Member

    function get_xprofile_child_fields($parent_field_id) {
        global $wpdb;
    
        $child_fields = $wpdb->get_results(
            $wpdb->prepare(
                "SELECT * FROM {$wpdb->prefix}bp_xprofile_fields WHERE parent_id = %d",
                $parent_field_id
            )
        );
    
        return $child_fields;
    }
    

    Function to count how many members have the individual options set

    function get_xprofile_field_member_count($field_id, $field_value) {
        global $wpdb;
    
        $count = $wpdb->get_var(
            $wpdb->prepare(
                "SELECT COUNT(*) FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = %d AND value LIKE %s",
                $field_id,
                '%' . $field_value . '%'
            )
        );
    
        return $count;
    }
    

    Create the tabs with a counter

    function custom_xprofile_child_field_directory_tabs() {
        $parent_field_id = 28; // Replace with your parent xProfile field ID
        
        $child_fields = get_xprofile_child_fields($parent_field_id);
    
        $tab_values = array(); // Store unique field values
    
        if (!empty($child_fields)) {
            foreach ($child_fields as $child_field) {
                $field_id = $child_field->parent_id;
                $field_value = $child_field->name;
    
                // Check if the field value is unique
                if (!in_array($field_value, $tab_values)) {
                    $tab_values[] = $field_value;
    
                    $child_count = get_xprofile_field_member_count($field_id, $field_value);
    
                    // Use a combination of field_id and field_value as the id
                    $tab_id = 'members-' . esc_attr('field_' . sanitize_title($field_value));
    
                    ?>
                    <li id="<?php echo $tab_id; ?>">
                        <a href="<?php echo bp_members_directory_permalink(); ?>"><?php printf( '%s <span>%d</span>', esc_html($field_value), $child_count); ?>
                    </a>
                    </li>
                    <?php
                }
            }
        }
    }
    
    add_action('bp_members_directory_member_types','custom_xprofile_child_field_directory_tabs');

    Thanks for any help on this 🙂

    #331788
    Reiner
    Participant

    Hello,
    When a new user registers and comes to the page after the registration process

    bool(false) string(6) “j. F Y” NULL

    Then the menu of the website is greatly enlarged in height and the message:

    “Your user account has been successfully created! In order to fully use the functions of the members area, you must activate your account via the activation link in the email we are currently sending you.”

    is constantly flickering on and off.
    What could be the reason?

    Registrierung bei Chopper-Motorrad

    Greetings
    Reiner

    #331678
    lemiran
    Participant

    Hi there
    I have a wordpress v6.3.2 with
    > BuddyPress v11.3.2
    > ProfileBuilder v3.10.1 (in order to have custom fields during registration)
    > Elementor Pro

    I have 2 weird behaviour.
    1- Non admin users, can see the admin bar with… MY account when they logged in.
    Fortunately, they cannot go in my account.
    To avoid that, for the moment i installed a plugin : Hide Admin Bar Based on User Roles

    2- The non admin accounts go directly in the backoffice when they log in (with the connexion button widget of elementor)

    Could you please help me?

    Best regards

    #331582

    Topic: Feedback

    in group forum Requests & Feedback
    James Janco
    Participant

    Hello Buddypress Community,

    My feedback is for registration of new users. one of my fried had a question for plugin. he tried manier times to register but no approval from your side. here is my humble appeal to make registration process faster.

    Thanks
    James Janco – edit: removed link

    #331495
    harrissa158
    Participant

    Hello, I would like to know how to consult the files and photos sent by members during their registration which I must approve or not, because in the “registration management” category I see all the profile fields filled except that there are no There are no attached files or images that I can open. How to do ? and where is this stored ?

    WP version : 6.3.1
    PHP version : 8.0
    BP version : 11.3.1
    Website : couning.fr

    #331467
    pellepedersen
    Participant

    I found the error. Private Network was activated in BP Registration. Maybe because of an update? (I have not started the function.)

    #331440
    lonetraceur1
    Participant

    Hi, to anyone who can help:

    I’m trying to override the error messages on the registration page. I need to add my own code into it (Replace icons for SVGs, add more text from a function, etc…), So it’s not a matter of just restyling with CSS.

    I can see the function that handles this is in:
    /bp-templates/bp-nouveau/includes/template-tags.php

    and the function is nouveau_error_template()

    I can’t seem to figure out how to override this code. There are no filters oractions from what I can see.

    Can anyone explain how I can customise the error messages?

    Many thanks in advance.

    #331078
    jcknight
    Participant

    I am attempting to use BuddyPress to setup a members-only website.

    The problems I am having:
    1. When the site loads it loads fully with everything accessible. How do you create the login page as your static frontpage, to block the site’s content from non-members?

    2. Buddypress automatically created members page, and activity page, etc… but did not create the registration page, or a login page. Is there a way to create these pages manually?

    Seems like this should be one of the easiest parts of this plugin but it was not automated and I cannot find how to manually set this up.

    *notes:
    1. yes I clicked on “anyone can register” in WP general settings.
    2. Once I clicked on it, the registration page and the activate page were created, but do not seem to actually work or hold any shortcode in them.
    3. No login page was created as mentioned above.

    #331058
    austindolbby
    Participant

    Removing the activation URL/key combo from the activation email and requiring users to manually copy and paste the key could indeed help slow down spam registrations to some extent. This approach introduces an additional step that may be more challenging for automated bots to complete, as they would need to extract the key from the email and input it accurately into the form. While it might inconvenience legitimate users slightly, it could potentially deter some automated spam bots.

    However, it’s important to note that determined spammers might still find ways to automate this process, such as using OCR (Optical Character Recognition) to extract the key from the email. Balancing security with user experience is crucial. Here are a few considerations:

    User Experience: Requiring users to manually copy and paste the activation key can be frustrating, especially for users who are less technically inclined. It might lead to a higher abandonment rate during the registration process.

    Accessibility: This method might pose difficulties for users with visual impairments or those using screen readers.

    Alternate Solutions: There are other methods to combat spam, such as CAPTCHAs, email verification, and behavior analysis. You might consider combining multiple techniques for a more effective anti-spam solution.

    Testing: Before implementing such a change, it’s recommended to conduct testing to see if it indeed reduces spam registrations without significantly impacting legitimate users.

    As for your request to add “TWITCHAUDIENCESPOTLIGHT,” I’m not quite clear on where you would like to add this text. Could you please provide more context or specify where exactly you want to insert this text?

    #330969
    Mathieu Viet
    Moderator

    Hi @earl_d

    According to the changes we included into this release I’d be very surprised it has such a side effect. If there’s an issue with the registration page, it’s probably something we haven’t figured out yet. I’ll look at it asap.

    #330968
    Earl_D
    Participant

    The update has a bug which causes registration page 404 error or redirect to login page. I re-saved permalinks but not change.

    #330954
    bretlee010186
    Participant

    It seems that you’re encountering issues with your website, https://buriedladies.com, specifically related to the registration page and the functionality of BuddyPress. After deleting and re-uploading BuddyPress, the register page appears blank despite setting up everything correctly according to the instructional videos you’ve watched. Additionally, you’ve noticed that when you log out of the site, the register option disappears from the top menu, which is puzzling.

    Regarding your second concern, it appears that individuals have successfully registered for your site due to your invitation to join groups. You’re wondering if there’s a way to manually assign them to specific groups.

    Considering the situation, here are a few steps you could take:

    Check Theme Compatibility: Since you’re using a Genesis theme, it’s important to ensure that it’s fully compatible with the latest versions of WordPress and BuddyPress. Sometimes, theme conflicts can lead to unexpected issues. Make sure your theme is up to date and well-suited for BuddyPress integration.

    Plugin and Theme Conflict: Conflicts between plugins or themes can lead to unusual behavior. Deactivate all other plugins except BuddyPress and switch to a default WordPress theme temporarily. See if the registration page works in this scenario. If it does, then the issue likely stems from a conflict. You can reactivate plugins and your theme one by one to identify the culprit.

    Permalinks: Check your site’s permalink settings. Sometimes, incorrect settings can lead to pages not displaying as intended. Go to Settings > Permalinks and make sure you have a valid permalink structure selected.

    BuddyPress Settings: Double-check your BuddyPress settings, especially those related to registration and user roles. Ensure that the registration page is properly assigned in the settings and that user roles are set up correctly.

    Cache and Cookies: Clear your browser cache and cookies to ensure you’re viewing the most recent version of your site.

    As for your second concern about moving users into specific groups, BuddyPress doesn’t natively offer a feature to manually assign users to groups. However, you can encourage users to join specific groups after registration by providing clear instructions on your site.

    Regarding “TWITCHFUSION,” it’s still unclear how this term relates to the context you’ve provided. If “TWITCHFUSION” has specific relevance to your website or the issues you’re facing, please provide more information so that I can address it accurately.

    #330946
    cbaweb
    Participant

    We’re looking at switching themes and are running into an issue with registration in the new theme. We have our registration page configured in s2 member and turned on. But the url redirects to the BuddyPress registration page instead.

    Our current theme has a setting where we can choose which page to use for registration; the new theme does not. Support for the new theme’s response was basically “we don’t have that, you need some code and we don’t do that.” Have asked s2 if they know how to resolve but no response yet.

    We’d love to be able to use this theme as we’re running it on our other (far less complicated)sites. Any ideas?

    #330916
    hausman1229
    Participant

    My site is https://buriedladies.com. My register page is blank. I deleted buddypress today and uploaded a new copy. The software creates the page but it’s blank. I’ve enabled anyone to register and they become subscribers. I’ve watched 3-4 videos and I have everything set up correctly. When I log out of the site, the register disappears from the top menu. I’m totally flummoxed.

    Meanwhile, folks registered for my SITE because I’ve asked them to join my groups. Is there any way to move them into a group?

    I have the most recent version of WordPress and buddypress. I’m using a Genesis theme.

    timvol
    Participant

    Saving settings gives a “Sorry, you are not allowed to access this page” message.
    Trying to set to Nouveau won’t save. It just keeps going back to Legacy. Totally not working anymore.

    Troubleshooting attempts included shutting down other plugins, turning on registration of new users and sites, deleting table data in phpMvAdmin, etc. Tried deleting the subsite and recreating it. tried switching up themes. Tried clearing the cache. All work using Superadmin accounts.
    The rest of the multisite is working fine.

    No luck. Am I missing something that keeps it hopelessly broken, no matter how many times I try to wipe it and try again?

    Backstory: On a multisite. Past experiments with Buddypress on this multisite. Problems emerged during attempts to set up a new site in the multisite using Buddypress.

    Running WordPress 6.2.2. I have been trying to use BuddyPress version 11.2.0.I have been attempting to use the BuddyX theme. No custom modifications

    timvol
    Participant

    Saving settings gives a “Sorry, you are not allowed to access this page” message. Trying to set to Nouveau won’t save. It just keeps going back to Legacy. Totally not working anymore.

    Backstory: On a multisite. Past experiments with Buddypress on this multisite. Problems emerged during attempts to set up a new site in the multisite using Buddypress.

    Troubleshooting attempts included shutting down other plugins, turning on registration of new users and sites, deleting table data in phpMyAdmin, etc. Tried deleting the subsite and recreating it. tried switching up themes. Tried clearing the cache. All work using Superadmin accounts.

    The rest of the multisite is working fine.

    No luck. Am I missing something that keeps it hopelessly broken, no matter how many times I try to wipe it and try again?

    hermannw
    Participant

    Hey there! I encountered a problem while using the BuddyPress plugin with Geo Directory. (I use Elementor Pro)

    I downloaded the plugin and set up the Register & Activate pages manuall, but none of the pages were selected. So, I created two new pages called “register” and “activate.” However, I noticed that the button on the side, as shown in the documentation, was missing. When I checked the pages, it showed that BuddyPress registration pages were allocated, but there was no shortcode block or any content on the pages. Additionally, when I tried to load the pages, it failed and gave me an error. I even tried saving in safe mode, but the issue persisted. I would really appreciate any help in fixing this problem. Thanks in advance! 🙏
    Here is the Loom:

    josecn
    Participant

    Hello
    I find many codes and plugins that help me to avoid the activation email when members join in the site, but when I tried these options affect the invitation system of buddyboss.
    For example, if I invite a user to join with a specific role “teacher” with the code the join as subscriber. I know I can change the role, but I want to know if it’s possible to automatically detect the role where I invite the user.
    “”function disable_validation( $user_id ) {
    global $wpdb;
    $wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”, $user_id ) );
    $users = $wpdb->get_results( “SELECT activation_key, user_login FROM {$wpdb->prefix}signups WHERE active = ‘0’ “); foreach ($users as $user) {
    bp_core_activate_signup($user->activation_key);
    BP_Signup::validate($user->activation_key); //fix roles
    $user_id = $wpdb->get_var( “SELECT ID FROM $wpdb->users WHERE user_login = ‘$user->user_login'”); $u = new WP_User( $user_id );
    $u->add_role( ‘subscriber’ );
    }
    } add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
    add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );
    add_filter( ‘bp_core_signup_send_activation_key’, ‘__return_false’ );”
    Plugin name: BuddyPress Auto Activate Auto Login and BP Disable Activation Reloaded
    Thanks for the help

    #330069

    In reply to: Invites not being sent

    missyoung
    Participant

    I checked “allow registered members to invite people to join this network.

    Here’s what the setting says:

    Public registration is currently disabled. However, invitees will still be able to register if network invitations are enabled.

Viewing 25 results - 126 through 150 (of 7,641 total)
Skip to toolbar