Search Results for 'registration'
-
AuthorSearch Results
-
August 3, 2014 at 9:58 pm #185894
growingforward
ParticipantI’m having the exact same problem with new use registration. They get the confirmation email, but when they click on the link it goes back to my home page with the:
‘invalid activation key’ message and a box to enter a number.
Seems like there hasn’t been a resolution to this so far, can anyone help?!
August 3, 2014 at 5:55 pm #185876In reply to: BuddyPress Not Letting Users Register!
@mercime
Participantit was the only elway to get anyone’s attention
@porter_hughes We’re all volunteers here living in different time zones, please be patient. Closed your original post with link to this topic.At this stage, deactivate all plugins except BuddyPress, keep on using the Twenty Thirteen theme, then try to register. If that still doesn’t work, deactivate BP then check if registration works. If registration still doesn’t work in standard WP install, please post at WP forums to resolve the issue.
August 3, 2014 at 4:01 pm #185871In reply to: BuddyPress Not Letting Users Register!
@mercime
Participant@porter_hughes first of all, do not SHOUT in the forums by using ALL CAPS, thank you.
We need to know more about your installation in order to help you.
– Where were you installing WP? – locally or webhost (Windows/Linux/etc ?)
– If you deactivate BuddyPress, does your registration work then?
– Are you testing registration using Twenty Fourteen and only the BP plugin activated?
– Are you testing on standard WP or WP Multisite?August 1, 2014 at 2:46 pm #185827In reply to: Register Page redirects to wp-admin page
Sokrates
ParticipantHi @canadadre and @mercine
Ron R. advises that this plugin is no longer required with BuddyPress v2 onwards
To solve your redirection problem in a Genesis child theme, simply create a file in your Genesis child theme called register.php
Copy the contents of page.php from the main Genesis theme into this file and save.
Create a new page in the Dashboard e.g. “my new registration page”, assign it as the registration page in the Dashboard > Settings > BuddyPress > Pages et voila!
From my admittedly limited understanding, copying the legacy templates across from the plugin into your child theme as per the BuddyPress Codex doesn’t work with Genesis – please correct me if I’m wrong dear reader!
July 31, 2014 at 12:53 pm #185784In reply to: Disable BP registration and enable WP registration
OsamaNuman
Participantthanks for the quick response !!
I just realized that -.- what I want is to have the registration page same as the login page that is with wordpress logo and all that, not to direct users to a registration page on my website
is there anyway I can do that ?
July 30, 2014 at 2:37 pm #185757In reply to: Disable BP registration and enable WP registration
danbp
Participantyou removed and added the same action, so nothing would changes: it’s just normal !
The difference beetween BP and WP registration is the BP xprofile additionnal fields for your members.
This means that BP modifies the aspect, not the registration process.And here is an answer to your question:
https://buddypress.org/support/topic/wordpress-login-and-registration-page/#post-171826July 30, 2014 at 11:15 am #185752In reply to: Registration Page Issue
OsamaNuman
ParticipantHello,
thanks for the reply…
what I meant by mission that I would like to have titles like mission and vision in a page and then add the registration form below these tiles in the page …. how to add the registration forum in a page ( is there any shortcode?)thanks alot and regards
July 30, 2014 at 1:55 am #185741In reply to: What is the hook after user registration?
rcjr24
Participant@danbp
its after login, what I want is after the registration successful, but I solve my problem in this wayfunction redirect_after_registration( $user_id ) { return wp_redirect( get_site_url().'/?p=504' ); exit; } add_action( 'bp_core_signup_user', 'redirect_after_registration' );
By the way, is this correct or am I on the right code? Although its works good to my site.
July 28, 2014 at 5:12 am #185653In reply to: Buddypress User Login Fail :(
heilyn
ParticipantCheck your registration in WordPress general setting. Your “anyone can register” button should be checked.
July 25, 2014 at 10:55 pm #185579In reply to: No Registration and Activation Page
Henry Wright
ModeratorBuddyPress should automatically create registration and activation pages for you. You can check by going to your website. For example
example.com/registration
orexample.com/activate
.To create a WordPress navigation menu and add the activation and registration pages to it, see the WordPress Menu User Guide.
July 25, 2014 at 6:44 pm #185574In reply to: Registration Page Issue
@mercime
Participantchange the edit the boxed included by default
@osamanuman just copy over https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-templates/bp-legacy/buddypress/members/register.php into wp-content/themes/your-theme-name/buddypress/members/ folder (create folders if you don’t have them yet) then edit that register.php and save.if I want to add mission and about us in the same registration page, how can it be done
Any field you create in the “Base” profile field group will show up in registration form. https://codex.buddypress.org/buddypress-components-and-features/extended-profiles/
July 25, 2014 at 5:50 pm #185570In reply to: [Resolved] disable nickname/pseudonym
@mercime
Participantwhen admin create a users he is forced to enter a pseudonym
@victord34 you mean a “username”. That is a WordPress requirement for registration, not BuddyPress. But since BP is a plugin for WP, we use those usernames in different instances.July 24, 2014 at 10:44 pm #185531In reply to: BP Buttons are unreadable
strokahontas
ParticipantI am having the same issue and was hoping someone could point me in the right direction as to which CSS file is causing this. The buttons for completing registration and editing profile are inexplicably tiny!
July 23, 2014 at 4:19 pm #185465In reply to: How to make a "post gallery" that has member ratings
FlickChicks
Participant@danbp Thank you for your quick reply! Yes, I guess it is WP-related. I was just thinking that because step 4 is dealing with login/registration that it has the BP component to it. Appreciate your link too.
Will skip over to WP now, cheers!
July 23, 2014 at 1:22 am #185437rcjr24
Participant@mercime I manage to rearrange all the fields using the code I posted, and now I have a code like this,
<?php if ( function_exists( 'bp_has_profile' ) ) : if ( bp_has_profile( 'profile_group_id=1&hide_empty_fields=0' ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <?php if ( 'Country of Residence' == bp_get_the_profile_field_name() ) : ?> <select class="country-residence" name="<?php bp_the_profile_field_input_name(); ?>" id="<?php bp_the_profile_field_input_name(); ?>" placeholder="<?php _e( bp_the_profile_field_name().':' ); ?>"> <?php //bp_the_profile_field_options(); global $wpdb; $sql = "SELECT * FROM wp_country_list"; $results = $wpdb->get_results($sql) or die(mysql_error()); echo '<option data-value="holder-only" class="holder">Country of Residence:</option>'; foreach( $results as $result ) { echo '<option data-value="'. $result->three_letter_code .'" value="'. $result->three_letter_code .'">'.$result->name.'</option>'; } ?> </select> <?php do_action( bp_get_the_profile_field_errors_action() ); ?> <?php endif; ?> <?php endwhile; ?> <?php endwhile; endif; endif; ?>
Now the problem is, when the registration completes, this field doesn’t reflect to the user profile after successful registration. Hope you’ve got my point here.
July 22, 2014 at 11:50 pm #185436In reply to: Confirm Email Address – Registration Form – HELP
arielmeadow
ParticipantI’m curious if anyone has any additional guidance on this — I have an on-staff developer who could enact this if anyone can suggest how.
We get a frustratingly large number of registrations for emails like reddysmith@gmial.com and laurabrown@yaho.com … it’d save a lot of hassle to force email confirmation on registration.
I understand that this plugin used to add the function, but is outdated and no longer works:
https://wordpress.org/plugins/bp-xtra-signup/July 22, 2014 at 10:26 am #185407In reply to: [Resolved] Username vs display name
xWafflecakes
ParticipantHey Thunderpeel, I used this code I found somewhere (just put it in your header somewhere):
<script> var url = document.location.href; jQuery(document).ready(function() { //copy profile name to account name during registration if (url.indexOf("register/") >= 0) { jQuery('label[for=field_1],#field_1').css('display','none'); jQuery('#signup_username').blur(function(){ jQuery("#field_1").val(jQuery("#signup_username").val()); }); } }); </script>
July 21, 2014 at 12:24 pm #185350In reply to: [Resolved] Accept site Terms and Conditions
danbp
Participanthi @chakadizulu,
read here:
https://buddypress.org/support/topic/terms-of-use-plugin-for-buddy-press/
https://buddypress.org/support/topic/adding-terms-of-service-to-registration/
devs opinion: https://buddypress.trac.wordpress.org/ticket/4747or you can give this one a try ?
https://wordpress.org/plugins/auto-terms-of-service-and-privacy-policy/
July 18, 2014 at 6:36 pm #185263@mercime
ParticipantHow to customize the order of fields of registration
@rcjr24 you can change the order within Users > Profile Fields panel
https://codex.buddypress.org/buddypress-components-and-features/extended-profiles/July 15, 2014 at 12:48 am #185093@mercime
Participantusername appearing twice on registration form
@jaciando1 Change the “User Name” profile field name in the “Profile Details” box -> go to admin menu
Users > Profile Fields and click on the “edit” button under that profile field name.I also appear to have two different register forms???
You can add the following to your theme’s functions.php page:
/* If BuddyPress is active */ if ( class_exists('BuddyPress') ) { add_action('init','mme_redirect_register'); function mme_redirect_register(){ global $pagenow; if( 'wp-login.php?action=register' == $pagenow ) { wp_redirect('http://buddypress.dev/join-us'); exit(); } } }
Change
http://buddypress.dev/join-us
to your site’s register page.July 7, 2014 at 11:03 pm #184874In reply to: User registration not working on fresh install.
lorns
Participant@mercime I was originally using the TwelveFourteen theme and it wasn’t working then. I couldn’t see the bp_default theme but I kept coming across advice that said I needed to be using the BuddyPress default theme – managed to find it in the plugin files. I’ve just now switched back to TwelveFourteen (to make double/triple sure) but it still won’t work. The registration page just reloads with form inputs intact (other than the password).
Definitely logged out, have tried in latest versions of Safari, Chrome & Firefox, go to Register Page, fill in details, hit submit – page reloads with all bar password fields intact.
I’m not sure what further steps I can give you other than above. My latest install is clean, up to date, unless I’ve missed some glaring setup step but I’m sure I’ve followed the guides correctly. I’m totally stumped.
July 7, 2014 at 6:37 pm #184863In reply to: Join a group, in the register process
@mercime
Participant@jovicar something like https://wordpress.org/plugins/buddypress-registration-groups-1/ ?
June 29, 2014 at 6:09 pm #184554In reply to: Different profile types and different user roles
kamillamonkey
Participant@noizeburger i have followed all the instructions. I don’t get any errors. My problem is the User Role doesn’t change upon new registration. It wont change it from the DEFAULT ROLE set in WordPress/Settings/General/New User Default Role [Author]. Any Suggestions?
June 27, 2014 at 9:58 am #184483In reply to: How to create searchable member database.
kimberleycollins
ParticipantUpdate/clarification –
I am wanting to display a selection of the custom fields users fill in at sign-up/registration. How can I choose/change which fields are displayed on my members page (associated with BP component dir – members).June 26, 2014 at 8:10 am #184436In reply to: How to have Two Sign up forms?
dzung
ParticipantFor now, I’ve come to another solution, where I allow users to Register new account with base Fields and a Role selection (Student or Lecturer in my case). They then fill in only base field and then after account creation they can update their Student or Lecture xProfile Group Fields in their profile page edit.
I do these above by using 3 plugins:
1. https://wordpress.org/plugins/wpfront-user-role-editor/
This will allow me to add new Role: Student and Lecturer in my case (I have tried other Role plugin but they conflict with other plugins on my site, this one doesn’t).2. https://wordpress.org/extend/plugins/wp-roles-at-registration/
This one allow me to add a Drop down for New user to choose their wanted role : Student or Lecturer3. https://wordpress.org/extend/plugins/buddypress-xprofiles-acl/
This plug in allow me to set buddypress xProfile group to a specific user role. In my case, I created two xProfile Group fields named “Student” and “Lecture” each has different fields. Then using this plugin I assigne the xProfile Student to Student Role, and the xProfile Lecturer to Lecturer Role.That’s all done!
Meanwhile I will use this, but I still want to be able to have two sign up forms with different fields so that I can require New user to fill in the Required field to make the profile better. I can’t code much so hope someone will help!
-
AuthorSearch Results