Search Results for 'registration'
-
Search Results
-
Hi,
We are using BuddyPress to integrate with LearnDash.
The LearnDash registration form is now not working as when a customer registers, it redirects to the BuddyPress registration form.
Is there a way to disable the BuddyPress registration feature so we can use just the LearnDash registration setup.
Thanks
Is there a way to add additional information to the BP when rated registration form. I want to remind people to check their spam folders for the activation email. The only thing I could figure is adding a read only filed to the sign up group. Is there a better way?
Topic: Registration Issue
I am using LeranDash to sell the courses and also want to create a community using buddypress. So while using buddy press plugin along with the LearnDash plugin it gives registration error if some new client want to register on the website.
I am using Divi theme as well.Please provide me the solution how I can use both the plugins.
In my standard BuddyPress I do not know how to RESTRICT the FIELD for entering new members Personal Profile URL.
As of now, I am asking for it, but people/scammers are just entering 2-3 letters, so I do not think they are real potential/legitimate members.
Standard BuddyPress does not have/grants me the option to restrict a new applicant’s application to enter specific sought information, say like URL, Phone Number and alike.
Also, when I look at all new members’ applications, the Name and email and time appear, but specific field/information like Personal Profile URL are not on the page — a feature which will help me approve the legitimate new members and reject all the many fake/spammers I am getting by the hundreds…
Hi,
I am new to buddypress. I have implemented the Kleo theme. When I am trying to sign-up with non-custom emails viz: @gmail.com or @hotmail.com, etc. The registration verification email does not reach the mailbox.
Kindly Help
WordPress Version 6.7.2
BuddyPress Version 14.3.3
https://cfoforum.co.inThere has been a critical error on this website. Please check your site admin email inbox for instructions. If you continue to have problems,
Please I need help, when ever my user wants to register on my website. The registration details can not be submitted. Buddypress is giving me this error.
Topic: Clean install not working
Wordpress 6.7.1
BP 14.3.1
MacOS Sequoia 15.2
MAMP 7.2, Apache, PHP 8.3.14, MySQL 8.0.40My issue is that on a full clean install of WordPress 6.7.1 and BP 14.3.1 all I get on the standard pages is a blank page, no forms, fields, etc .. say for the Registration page .
No other plugins are active.
Tried a few themes, even Twenty-Twelve = same issue.
Screenshots:
https://www.dropbox.com/s/azyzijakl24gt8n/Screenshot%202025-01-13%20at%2013.58.28.png?dl=0
https://www.dropbox.com/s/qi7gyeoaw02spud/Screenshot%202025-01-13%20at%2013.58.36.png?dl=0Thanks.
I’ve used BuddyPress before but recently reinstalled it and find that some pages, like register, are being created “on the fly” instead of having an actual page representing it, if that makes any sense.
And I’m finding that the register page has the wrong page title and canonical URLs attached, which I can’t seem to fix from my SEO plugin and can’t do at the page level, as there’s no actual page.
Is there a way to fix this or a way to go back to creating a “register” page again? I don’t see any settings like there used to be where you can select a page for registration, etc. It just gives you the permalink for the page.
Thanks
I have been experimenting with Buddypress for several months, and during this time, Buddypress and WordPress has updated a few times, so I don’t know if this has to do with my issue, but: I use disposable email addresses like test@malinator.com to create dummy users to test Buddypress. It used to work fine, but today I discovered that even though I have an SMTP set up, Buddypress will not send registration activation emails to test users signed up with a disposable email address with this domain (mailinator.com). When I go to my dashboard and Users and resend the activation email, that also is not received.
As a test, I tried signing up with my personal, real email address, and that one received the activation email, which is why I believe Buddypress now does not send activation emails to disposable email addresses.
Can anyone confirm if this is true, and, how I can get them to send emails to disposable email addresses?
Currently using WordPress 6.7.1 and Buddypress 14.3.3.Thank you
Hi,
I have a buddypress theme installed that allows to handle WPJM plugin for job and resume registrations. For this latter I need the users to register as candidate or employer to control who can view resumes or post jobs etc.
However the theme dont have this per standard but their support where very kind to give me a suggested custom code to handle this. I cant get this to work and wonder if someone knows what might be missing?
This is what they wrote me for this question:
Create a Profile Field for “Role”: Set options like “Employer” and “Candidate” for users to select during registration.
Use Code to Assign the Role: A code snippet can assign the correct role based on the user’s selection in this profile field.Please let us know if you’d like guidance on the custom code snippet to achieve this or if you’d prefer assistance from a developer.
Here is a code snippet you can use to assign a user role based on the value selected in a custom BuddyPress profile field during registration. This example assumes the profile field is named “Role” and has values such as “Employer” or “Candidate.”
function assign_role_based_on_profile_field($user_id) { // Get the BuddyPress profile data for the registered user if (function_exists('xprofile_get_field_data')) { $role_value = xprofile_get_field_data('Role', $user_id); // Replace 'Role' with the exact name of your profile field // Assign the user role based on the profile field value if ($role_value == 'Employer') { // Assign 'employer' role $user = new WP_User($user_id); $user->set_role('employer'); // Replace 'employer' with the exact role slug } elseif ($role_value == 'Candidate') { // Assign 'candidate' role $user = new WP_User($user_id); $user->set_role('candidate'); // Replace 'candidate' with the exact role slug } else { // Default role if no specific selection is made $user = new WP_User($user_id); $user->set_role('subscriber'); // Or any other default role } } } add_action('bp_core_signup_user', 'assign_role_based_on_profile_field', 10, 1);
Make sure the roles employer and candidate are defined in your site.
I want to use the WPJM user roles as standard: employer and candidate. Not sure if the slug meant here is just ’employer’ and ‘candidate’ to be correct?
Best regards,
Flamuren