Search Results for 'registration'
-
Search Results
-
I have a LearnDash site with WooCommerce. Most of my courses are self-paced. I want to use BuddyPress for the courses when I’m teaching live. Is there a way to hide BuddyPress except for the students in my live courses? Maybe I can block registration except by invitation?
Thank you.
I’m running BuddyPress 5.1.2 and WordPress 5.3.2. I also have WooCommerce and LearnDash installed. My site isn’t live, yet. But the registration and activate pages go to my homepage and I don’t know why. I appreciate any help. I see others have had this issue, but it seems like it resolved on its own. Mine isn’t. It’s been days.
Thanks!
WP version: 5.3.2 / BP version: 5.1.2
I am building community site with registered users. I don’t want give my useres any access neither to WP admin dashboard nor the WP admin bar. I do not want them to see anything from WP.
BUT
I want to keep the member’s profile block on the frontend as you have on your BP org page.
In my case the registration and so profile modification, image replace etc. would be possible to be done also from the front side.
OR
Since BP creates these profile related functions inside (Home, Profile, Notification, Messages, Friends, Groups , Settings), how can I create a new additonal menu item (the name could be: „My profile data” or something like this) on the front in the primary menu bar by clicking of wich I could reach e.g. the „Home” page from the above.
HOW CAN I REALIZE ANY OF THESE GOALS WITHOUT CODING ABILITIES ?Is there a way to only allow registration by approval of the Admin?
Spam is still getting through 3 levels of security (captcha, anti-spam and ssl), so I wanted to be able to approve each member myself.Is this possible?
Hello,
I use the Buddypress registration form and I send the information concerning the registrations to Mailchim vie the MC4WP plugin.
In my form, there is a date of birth field. However, it would appear that Buddypress adds backslashes in the date data that prevent the data from being sent to Mailchimp. For example, July 14, 1966 is recorded like this: 14\/07\/1966.
Does anyone have any idea how I can fix this problem?
Thank you in advance for your answers.
Olivier Bonnet
AlgofaéI wanted to test ultimate member so I deactivated BuddyPress and deleted the related pages. That was a mistake. The Ultimate member has issues I don’t want to deal with and it scares me that some basic things like deactivating registration are not there. So, my questions is how do I reinstall or get by buddypress pages like members page, log in and log out. I notice the logout is missing in the menu options.
Hi there,
i am using Events Manager and have one specific custom user field i’ve implemented in my registration from for our events. This field i also need to see in the related user profile afterwards.
How can i achieve this?
Hello,
I allow myself to contact you because I have a big problem.
In fact, I am currently developing the site: https://piedspieds.whimpixel.fr/
Until now, everything worked very well but overnight, the registration page is no longer accessible … (https://piedspieds.whimpixel.fr/inscription)
Indeed, it automatically returns to the home page.
I tried to purge the cache, recreate a registration page, go through the repair tools to reset everything, disable and reactivate the plugin but nothing helps … The famous registration page is more visible.
Could you help me please ?
I use buddypress for registration but this page not loading correctly!
Hello Buddybpress team
I want to create custom short code for buddypress registration from and i have follow below thing .
1) plugin -> bp-custom.php file in I’ve add copy register.php file code and create short code using same register page code but when i place that shortcode other pages not working .Is there any solution for that ?
Here my code :
function buddy_register_short(){
global $wpdb,$bp;?>
<div class=”bs-bp-container-reg custom-register-section”>
<div id=”buddypress” class=”buddypress-wrap extended-default-reg”>
<div id=”register-page”class=”page register-page”>
<form action=”” name=”signup_form” id=”signup_form” class=”standard-form” method=”post” enctype=”multipart/form-data”>
<div class=”register-section” id=”basic-details-section”><?php /***** Basic Account Details ******/ ?>
<div class=”form-group”>
<label for=”signup_username”><?php _e( ‘Username’, ‘buddypress’ ); ?> <?php _e( ‘(required)’, ‘buddypress’ ); ?></label>
<?php/**
* Fires and displays any member registration username errors.
*
* @since 1.1.0
*/
do_action( ‘bp_signup_username_errors’ ); ?>
<input type=”text” name=”signup_username” id=”signup_username” value=”<?php bp_signup_username_value(); ?>” <?php bp_form_field_attributes( ‘username’ ); ?>/>
</div><div class=”form-group”>
<label for=”signup_email”><?php _e( ‘Email Address’, ‘buddypress’ ); ?> <?php _e( ‘(required)’, ‘buddypress’ ); ?></label>
<?php/**
* Fires and displays any member registration email errors.
*
* @since 1.1.0
*/
do_action( ‘bp_signup_email_errors’ ); ?>
<input type=”email” name=”signup_email” id=”signup_email” value=”<?php bp_signup_email_value(); ?>” <?php bp_form_field_attributes( ’email’ ); ?>/>
</div><div class=”form-group”>
<label for=”signup_password”><?php _e( ‘Choose a Password’, ‘buddypress’ ); ?> <?php _e( ‘(required)’, ‘buddypress’ ); ?></label>
<?php/**
* Fires and displays any member registration password errors.
*
* @since 1.1.0
*/
do_action( ‘bp_signup_password_errors’ ); ?>
<input type=”password” name=”signup_password” id=”signup_password” value=”” class=”password-entry” <?php bp_form_field_attributes( ‘password’ ); ?>/>
<div id=”pass-strength-result”></div>
</div><div class=”form-group”>
<label for=”signup_password_confirm”><?php _e( ‘Confirm Password’, ‘buddypress’ ); ?> <?php _e( ‘(required)’, ‘buddypress’ ); ?></label>
<?php/**
* Fires and displays any member registration password confirmation errors.
*
* @since 1.1.0
*/
do_action( ‘bp_signup_password_confirm_errors’ ); ?>
<input type=”password” name=”signup_password_confirm” id=”signup_password_confirm” value=”” class=”password-entry-confirm” <?php bp_form_field_attributes( ‘password’ ); ?>/>
</div><?php
/**
* Fires and displays any extra member registration details fields.
*
* @since 1.9.0
*/
do_action( ‘bp_account_details_fields’ ); ?></div><!– #basic-details-section –>
<?php/**
* Fires after the display of member registration account details fields.
*
* @since 1.1.0
*/
do_action( ‘bp_after_account_details_fields’ ); ?><?php
/**
* BuddyPress – Members
*
* @package BuddyPress
* @subpackage bp-legacy
* @version 3.0.0
*//**
* Fires before the display of the registration submit buttons.
*
* @since 1.1.0
*/
do_action( ‘bp_before_registration_submit_buttons’ ); ?><div class=”submit text-right”>
<input type=”submit” class=”btn-primary” name=”signup_submit” id=”signup_submit” value=”<?php esc_attr_e( ‘Complete Sign Up’, ‘buddypress’ ); ?>” />
</div><?php
/**
* Fires after the display of the registration submit buttons.
*
* @since 1.1.0
*/
do_action( ‘bp_after_registration_submit_buttons’ ); ?><?php wp_nonce_field( ‘bp_new_signup’ ); ?>
</form>
</div>
</div>
</div>
<?php
}
add_shortcode( ‘buddypress_register’, ‘buddy_register_short’);?>
Thanks
ChavodHello guys,
First of all I’m new to wordpress and can’t code yet so I use plugins and themes. I’m having trouble after deleting the Ultimate member plugin because now I can’t register users at all (it used to work before). I now just want to add members with the regular buddypress but BP asks me in which page the users are “registering” and that page does not exist I think… How can I make the users register without using any plugins apart from BP (user registration is enabled in Settings > General). I just want the normal registration with BP to work (so I can add the profile) and can’t seem to make it work. I have to make a “registering” page or something? How can I do that without plugins?
Thank you in advance
WP version is 5.3.2, BP version is 5.1.2 and page is http://www.languageslearningclub.com
Hi I would like to alter the registration profile fields to be instead First Name and Last Name rather than the single Name field. I would then want the Name Field to go away and have First Name and Last Name fields be primary. How can I do this?
All is in the title, My registration is made with Ultimate membership Pro plugin.
There, I define User profile picture.
When I go to BP Member page, or BP Userpage it’s showing Avatar mystery man, not the registered image from wordpress user profile.
Is there a hook that can replace BP Avatar image by IUMP profile image ?
Thank you very much for helping…
Hello
BuddyPress requires an alternative user nams and generates a third:
1) There is the WP-username
2) BuddyPress invented “display name”.
(All most very pointless feature, because users are unable to hide there WP-username?)3) To make it more confusing, there is an “at-@username” too.
(It can differ from WP-Username in upper/lower case and in special characters!)It means three possibilities for different naming’s for the same user. We’ve got may support questions because user tried to login with the “display name”. Sometimes even with the “at-@username”.
May questions:
– Is there a way to get rid of the “display name” in general?
If no:
– Is there a way to force the “display name” to be identical to the WP-username?
– Is there a way to sync the WP-username to the “display name”?
– Is there a way to remove the “display name” from registration form?
– Is there a way to remove the “display name” from the profile?We are looking for an unique username in BuddyPress.
PS:
In general, it’s a really ugly idea of BuddyPress to mess with usernames like this.Topic: issue with BP Member Reviews
Greetings,
I have a very simple requirement where I would like to have a mobile/phone number field in the registration form which is doable by adding custom registration fields in Buddypress but, I want the mobile/phone number to have a unique meta key value so that no user can create a second profile with same mobile/phone number.Just like email has a unique meta key so that the user can have one account with one email ID, similarly, I would like to have mobile/phone number to be associated with only one profile.
I don’t want to implement any 3rd party plugin for registration like Ultimatemeber etc as it ads a lot of pages too. I would like to have a small snippet or function to attain this.
Any help would be highly appreciated.
Waiting for the reply!
Regard
RW