Search Results for 'registration'
-
Search Results
-
Hello, I’m using BuddyPress 3.1.0, bbPress 2.5.14 and the BuddyBoss theme 2.4.6 to create an online community/support forum site.
I want to create a landing page and followed this guide by WPMUDEV but realized halfway through it is outdated! I couldn’t find any up-to-date forum threads, guides, or articles regarding this.
I ran into trouble once I actually need to create my own register.php. I was able to locate the file in /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php, but I’m not sure how I can best edit it to fit within my custom landing page seen here. The login form is a widget, to be replaced with the registration form. I want to place the login form in the green upper-right corner.
Can anyone point me to the right direction as to how I can have the registration form and login form show up? Any help would be appreciated!
Hello, instead of using the Buddypress default forms, can I substitute them with my own custom forms?
I’m using Ninja Forms with its User management addon. How can I set things up such that a user can use the ninja forms I setup to register themselves, login and edit their profiles?
Topic: Multisite Installation
Hello, here’s my situation right now:
I run a multisite installation and have one main site and 3 subsites in my network. These are the addresses:
https://domain.com/ (main site)
https://domain.com/subsiteA
https://domain.com/subsiteB
https://domain.com/subsiteCSubsite A and Subsite B will have WooCommerce stores selling different products with different settings. And I have a plugin that makes it such that when a user registers on a subsite, the user will also be registered in all the sites within the multisite network.
What happened is that my main site has been separated into a main site with 3 subsites that has specific features and sales funnel for each: Shop for travel packages, Shop for non-travel related products, Resource library with Q&A forum. But these 3 subsites are actually sections within 1 single site so at the end of the day, I would like for the customer to have a seamless experience by giving them one central dashboard instead of having to switch dashboards to access various parts of the website.
Question:
If I install Buddypress on Subsite C but all registrations are performed on Subsite A, is that possible? i.e When a user registers on Subsite A, can a Buddypress account automatically be created for the user even though Buddypress is activated on Subsite C? Or should I activate Buddypress as a network activation?Thank you in advance and hope to hear from you guys soon!
Hi,
I’m curious if buddypress can handle the following requirement:
Registration
Creating and managing profiles
Profiles layout customized(PSD to HTML)
groups page customized(PSD to HTML)
listing plugin linked to buddypress login details
Create groups
Create group overview
Create private groups
Send forms to group members(forms are, for example, contactform 7 or a different format in which the group can exchange business leads)
Keep track of how many forms have been sent, per person, per group and total.
Dashboards for group members visibility (who sent how many forms)if yes, what is standard and what should be developed.
Hello, everyone!
After I have filled the registration form WP redirects me to the Homepage. In users list (Dashboard) I don’t see new user too.
Steps which I tried to resolve the problem:
1) WP in simple mode, not WPMS
2) Dashboard – Settings – checkbox “Users can register” checked
3) Disabled all plugins and checked BuddyPress registration function
4) Changed theme to another one. (I use OneCommunity theme by default)
5) Installed WP Mail SMTP (tried to send messages via php wp_mail & smtp). Both variants work for WP, also checked to send messages via Contact form 7 etc. BUT not sending any mail from BuddyPress
6) Tried to reinstall BuddyPress plugin, still not working
7) There is no hosting problems too…
8) I don’t see another user accounts in Users dashboard.
9) Switched between old and new BuddyPress templates…
10) Additional information:
– WP version 4.9.8
– BuddyPress 3.1.0
– Activated plugins (15): Anti-Spam by CleanTalk, bbPress, BuddyPress, Contact Form 7, No Category Base (WPML), OneCommunity Shortcodes, UpdraftPlus – Backup/Restore, UpdraftPlus – Backup/Restore, Wordfence Security, WP Mail SMTP, WP Sitemap Page, WP-Polls, WPBakery Page Builder, Yoast SEO Premium, WP Recaptcha Integration.
11) There is no any php errors (when I enable debug) and js errors in browser console.I can’t find another reason why didn’t registration form not working…. Domain – barbiusa58.info
How I can fix it? Thanks in advance)Hi,
I am trying to create a new custom field on a registration page. The field asks for a code from another application and then it checks if the code is registered in a SQL table. The problem is that if that the error message for this field is not formatted the same as for the standard fields.
See this:
https://ibb.co/b2oqkp
I passed the same error message to the username box for comparison. But as you can see the last field (acctivation code) does not format correct, and is not showing red.
This is the code:add_action( 'bp_account_details_fields', 'mcreg_registration_form' ); function mcreg_registration_form() { $acctivationcode = ! empty( $_POST['signup_acctivation'] ) ? intval( $_POST['signup_acctivation'] ) : ''; ?> <div class="editfield signup_acctivation required-field visibility-public field_type_text" id="acctivation-field"> <label for="signup_acctivation"><?php _e( 'Acctivation code ', 'mcregister' ); ?><?php _e( '(required)', 'buddypress' ); ?><br/> </label> <?php /**https://github.com/buddypress/BuddyPress/blob/42837dd8e6e7fa37b1356f7fca6c3d5cded9c164/src/bp-templates/bp-legacy/buddypress/members/register.php * Fires and displays any member registration acctivation code errors. * value="<?php echo esc_attr( $acctivationcode ); ?>" */ do_action( 'bp_signup_acctivation_errors' ); ?> <input type="text" id="signup_acctivation" name="signup_acctivation" value="<?php echo esc_attr( $acctivationcode ); ?>" required /> </div> <?php } function mcreg_bp_registration_acctivation_validate( $errors ){ global $bp; //$error_message_incorrect = __( 'Please check the Acctivation code. It\'s not correct.', 'buddypress' ); $uuid = null; if(!empty($_POST['signup_acctivation'])){ try { $uuid = accode_to_uuid($_POST['signup_acctivation']); } catch (Exception $e) { //TODO: add database error message. $bp->signup->errors['signup_acctivation'] = __( 'Something went wrong when checking acctivation code', 'mcregister' ); } } if ($uuid==null ) { $bp->signup->errors['signup_acctivation'] = __( 'Please check the Acctivation code. It\'s not correct.', 'mcregister' ); $bp->signup->errors['signup_username'] = __( 'Please check the Acctivation code. It\'s not correct.', 'mcregister' ); //$bp->signup->errors['signup_acctivation'] = $error_message_incorrect; return; } $mcname = uuid_to_username($uuid); if(!$mcname==false){ $_POST['signup_username'] = $mcname; } //TODO: find a way to store UUID //$bp->signup->uuid = $uuid;; return; } //bp_signup_validate add_action( 'bp_signup_pre_validate', 'mcreg_bp_registration_acctivation_validate' );
I would also like to store the return code (called UUID) in the user profile if the registration is successful so its great if someone know how I can do this.
Last I would also like to hide the username (brukernavn) field as I will fill that problematically when I am doing the test, I am currently just overwriting it.
Thanks,
Topic: Bug in activation messages
Hello,
congrats for your plugin. After new user registration, the user activation message is the following:
Your account was activated successfully! You can now log in with the username and password you provided when you signed up.
which is incorrect and needs to be fixed. Any ideas?
Thanks in advance
Topic: Activate page not working
When I try to view the activate page it redirects back to my how page. I tried looking up old articles about this and checking all the appropriate registration links. I also tried deleting the pluggin and reinstalling it.
Hello,
I added custom field on registration form.
And I tried to change the font on registration form, I could change the font of the original field by customizing css code. But I could not change the font of custom field label.Here is my website link : https://www.balchagi.net/register/
Here is translated image link : https://imgur.com/a/vDwd75F(SORRY, My website is in Korean, so I post with image.)
As you can see, email and pw label are same font, but “name” and “interest” field are different font.
I added on Custom CSS and tested with below codes:
.editfield {font-family:’nanumgothic’ !important;}
.legend editfield {font-family:’nanumgothic’ !important;}
#field_1-1 {font-family:’nanumgothic’ !important;}but nothing works.
can someone help me with this problem?
Thank you.Hi,
I’m running WP 4.9.7, BP 3.1.0 and the site is totally local for now, and private, so no link to the website.
The issue is still the same in standard themes, as well as BuddyBoss which is the one I’m using.
The issue is that when the registration form is submitted, errors are not showing properly – just a red line, with no text showing the error.
I’ve seen that the error calls the function: bp_signup_username_errors but I can’t seem to find where that function is!
I’ve Googled lots (all morning), looked in the codex and searched these (and other) forums and can’t seem to find out how to add the content to the errors or even why they’re not being populated.
Does anyone have any ideas??
Hello guys,
I am experimenting some problems with buddypress login.
I have sucessfully registered a few members.
Now none of them can login with their username and pwd.Can you help please?
Topic: Only email registration
Hello everybody,
(first I’m talking about WordPress part registration, not the buddypess’s fileds.)
I would like to hidde username’s field and take email for username. (don’t let users type two time the email).
I know it is possible via hooks in WordPress (1:hidde, with css, username field (not very tricky), 2:disable error messages 3:catch post request and set username’s value to email’s value.)
I don’t find how to do same things with the buddypress form and it is a bit tricky even with php knowledge…
Could you help me ? Thank you.
Hello – How can I tell which fields appear on the registration form?
Thanks!Hello everyone! I have updated the user’s profile fields for registration and for new users there is no problem. The problem is with the already signed up users…
I would like to redirect users to edit profile page if some field is empty, and with a kind of alert,even a banner above the edit form section. Thank you