Search Results for 'registration'
-
Search Results
-
Hello there,
My website is in French.
Here is the page where I have an issue : https://demo-avec.com/inscription/
As you can see, the label for the name field is half in english and half in french : Name (obligatoire)
I am trying to find a solution to solve that issue.
I want to display that text like this : Nom (obligatoire)
I tried to find it in Buddypress Po file, but I couldn’t.
I tried to change my theme, deactivate all plugins, empty my cache, upload Polylang plugin… Nothing works.
The worst is that all the other fields have been automatically translated, but not this one.
I’m getting mad with this issue, thanks for your help ๐
I use a profile builder and form to manage site registrations (the url was originally /register)
Now when I go to register I get this “Member registration is currently not allowed.”
When I go to Settings > Buddypress > URLS there is no “registration” slug and neither when I go to Pages and I able to see any buddypress created pages.
How do I disable Buddpress hijacking the registration?
Can I disable Buddypress registration in any way?Hello Buddypress community,
I am beginner with that plugin and I would like to know if there is a way to assign a template to my registration page, and to activation page as well.
Right now I just can see a slug to define in my settings, that’s it.
Is there any plugin, add-on, code or any option that I missed that will answer to my question ?
Thanks for your help ๐
At the moment, I’m wanting the pages showing the list of events and the list of groups and the pages for each of those items to be accessible and viewable by people who haven’t signed up to the website. However, at the moment anytime I try to access those pages I get sent back to my registration homepage.
I’m using the SocialV theme.
Hello everyone,
WP Version: 6.6.1-de_DE
Elementor: v3.24.4
Elementor Pro: v3.23.3
BuddyPress Version: 14.0.0I’m facing an issue where the registration form URL, defined in Settings > BuddyPress > URLs, always loads with the single post template. I can’t change it to another template. How can I assign a custom template to this page instead of using the standard blog post template? Any help would be greatly appreciated!
Thanks!
Topic: Redirect login link
WP:6.6.1
BP:14
BP Registration Options Version 4.4.5
BuddyPress Members only 3.5.3For many years, users on my site have been able to request membership, after which the administrator needed to approve them. Upon requesting membership, the applicant saw a message on the screen and received an email instructing them to await the administratorโs approval. Similarly, the administrator received an email, and it was clearly marked in BP Registration in the backend that there was a new application to be approved.
Suddenly, only the applicant receives an email. No email is sent to the administrator, and there is no marking in BP Registration. Are there others experiencing similar challenges?
Does anyone know what changes might have been made? Or is the solution to my problems to downgrade?
WP:6.6.1
BP:14
BP Registration Options Version 4.4.5
BuddyPress Members only 3.5.3For many years, users on my site have been able to request membership, after which the administrator needed to approve them. Upon requesting membership, the applicant saw a message on the screen and received an email instructing them to await the administrator’s approval. Similarly, the administrator received an email, and it was clearly marked in BP Registration in the backend that there was a new application to be approved.
Suddenly, only the applicant receives an email. No email is sent to the administrator, and there is no marking in BP Registration. Are there others experiencing similar challenges?
Best regards
I’m running PHP 8.2, have deactivated all plugins other than BuddyPress, have switched to a default WordPress theme (2023), and have tried BuddyPress 12.2 and 14.0 – and BuddyPress will not send out emails to new members at all.
This includes when they self-register, when admin sends them reminder emails manually, and when registration moderation is used and admin sends them an approval email.
The BuddyPress plug-in itself says that emails are successfully sent, but they do not arrive and (when active) the WP Mail Catcher plugin does not record them as having been sent successfully or having failed: it does not acknowledge them at all.
All other emails from my site work fine when other plugins are active – including 2FA, forgotten passwords and Newsletters. Can anyone suggest what the issue might be, or what next steps I should take to troubleshoot BuddyPress? Thanks.
Topic: conditional menu
Topic: Unable to register users
I’m trying to troubleshoot my BuddyPress registration form, which seems to be having some serious problems. I should start by noting that I have added some customizations to my form to add additional data fields, but the registration fails regardless of whether the customizations and overrides are enabled or disabled, and fails in exactly the same manner based on the error log, so the customizations are unlikely to be having an impact.
Here are the hooks that I am using to track where the problem is originating from:
// Hook into various stages of the BuddyPress registration process
add_action( ‘bp_before_registration_submit_buttons’, ‘log_before_registration_submit_buttons’ );
add_action( ‘bp_core_screen_signup’, ‘log_core_screen_signup’ );
add_action( ‘bp_signup_pre_validate’, ‘log_signup_pre_validate’ );
add_action( ‘bp_signup_validate’, ‘ex_custom_bp_signup_validate’ );
add_action( ‘bp_core_signup_user’, ‘log_core_signup_user’, 10, 2 );
add_action( ‘bp_core_activate_user’, ‘log_core_activate_user’, 10, 3 );
add_filter( ‘bp_core_validate_user_signup’, ‘log_core_validate_user_signup’ );
add_filter( ‘bp_core_signup_user_notification’, ‘log_core_signup_user_notification’, 10, 2 );function log_before_registration_submit_buttons() {
error_log( ‘Hook: bp_before_registration_submit_buttons fired.’ );
}function log_core_screen_signup() {
error_log( ‘Hook: bp_core_screen_signup fired.’ );
error_log( ‘Form submission data: ‘ . print_r( $_POST, true ) );
}function log_signup_pre_validate() {
error_log( ‘Hook: bp_signup_pre_validate fired.’ );
}function ex_custom_bp_signup_validate() {
global $bp;
error_log( ‘bp_signup_validate hook fired. Validation errors: ‘ . print_r( $bp->signup->errors, true ) );
}function log_core_signup_user( $user_id, $user_data ) {
error_log( ‘Hook: bp_core_signup_user fired.’ );
error_log( ‘User ID: ‘ . $user_id );
error_log( ‘User Data: ‘ . print_r( $user_data, true ) );
}function log_core_activate_user( $user_id, $key, $user ) {
error_log( ‘Hook: bp_core_activate_user fired.’ );
error_log( ‘User ID: ‘ . $user_id );
error_log( ‘Activation Key: ‘ . $key );
error_log( ‘User Data: ‘ . print_r( $user, true ) );
}function log_core_validate_user_signup( $result ) {
error_log( ‘Hook: bp_core_validate_user_signup fired.’ );
error_log( ‘Validation Result: ‘ . print_r( $result, true ) );
return $result;
}function log_core_signup_user_notification( $user_id, $user_data ) {
error_log( ‘Hook: bp_core_signup_user_notification fired.’ );
error_log( ‘User ID: ‘ . $user_id );
error_log( ‘User Data: ‘ . print_r( $user_data, true ) );
return $user_data;
}Here is a sample of the outputs from testing, with and without the Extended Profiles setting turned on:
[19-Jul-2024 00:01:28 UTC] Hook: bp_core_screen_signup fired.
[19-Jul-2024 00:01:28 UTC] Form submission data: Array
(
[signup_username] => TestUserAlpha
[signup_email] => AlphaEmail@EmailAlpha.com
[signup_password] => xEO^ONJS1ZkY
[signup_password_confirm] => xEO^ONJS1ZkY
[field_1] => Imma User
[signup_profile_field_ids] => 1
[signup-privacy-policy-check] => 1
[signup-privacy-policy-accept] => on
[signup_submit] => Complete Sign Up
[_wpnonce] => 3184f10172
[_wp_http_referer] => /register
)[19-Jul-2024 00:01:28 UTC] Hook: bp_before_registration_submit_buttons fired.
[19-Jul-2024 00:01:32 UTC] Hook: bp_core_screen_signup fired.
[19-Jul-2024 00:01:32 UTC] Form submission data: Array
(
[signup_username] => TestUserBeta
[signup_email] => AlphaEmail@EmailAlpha.com
[signup_password] => oeHAfbtPlIRG
[signup_password_confirm] => oeHAfbtPlIRG
[signup-privacy-policy-check] => 1
[signup-privacy-policy-accept] => on
[signup_submit] => Complete Sign Up
[_wpnonce] => 9240fe3ccc
[_wp_http_referer] => /register
)After poking around in various threads and ChatGPT, the suggestion is that the error is happening in the form validation, and I was told to look at bp-core-signup.php in the bp-core folder. Problem: this file does not exist in my BuddyPress installation. I deleted everything, did a fresh installation, and the file still does not exist. I added the hooks back in, made another test, and got exactly the same result. So am I just straight up missing a file in my installation? Or is there a deeper problem that’s outside the scope of my current awareness?
Hello,
I recently updated to the latest version of BuddyPress and ran into some issues
The first thing I’ve noticed is that the elements I had for the “Blog” page are printing on some BuddyPress pages, like the registration page
I have consulted the people at GeneratePress and they tell me that the problem would be in BuddyPress, since BuddyPress would be occupying is_home() in templates that are not blog. This bug or problem is persistent and can be replicated, for now I hid those elements using CSS
https://generate.support/topic/problem-with-elements-in-buddypress/
I have also noticed strange behavior on blog page after updating. For example, sometimes the registration page and the blog itself lose their favicon in the browser
I have also noticed that, after updating, occasionally my blog gets some styles corrupted, for example I lose some paddings. These bugs or problems are difficult to detect, they are occasional
It would be great if you could review this
Thanks for the plugin, best regards
Wordpress Version 6.5.5
BuddyPress 12.5.1Testing registration and the attached email doesn’t have a Group Name. THe Group Name doesn’t populate. Can anyone tell me where this email comes from and how I fix this or stop this one from sending? Thanks.
_______. has invited you to join the group: “{{group.name}}”.
Go here to accept your invitation or visit the group to learn more
Hello,
We are using the buddyboss platform.
However, Users couldn’t register. After they submit the registration, the system always gets stuck.
How can I fix the problem?I am using Extended Profile for a user registration form. I’d like to use the default WordPress bio field (Biographical info). I am able to add it in the Extended Profile settings (under Type -> WordPress Fields -> Biography), but there is no option to require it. I can make other fields required. How could I go about making that field required?
WordPress 6.5.4
BuddyPress 12.5.0I have allowed registration via Buddypress on my site.
When a new user gets an account activation email after registering, the email uses the username in the “to” field like “To Username” but uses the first name in the email body like “Hello First Name”.
This inconsistency does not look good and I want the email to use the user’s first name in the “to” field so it is more personable. How can I make the activation email use the first name instead of the username in the “to” field?
Thank you.
I want to be able to add a description that tells users their profile slug would use their username rather than their first or surname. Unfortunately, the username field is not editable in the Profile Fields section of the Buddypress profile like other fields are.
Wondering if there is a different way to add the message?