Search Results for 'registration'
-
AuthorSearch Results
-
September 3, 2014 at 4:16 pm #189440
In reply to: [Resolved] Registration form Field Error
sam01389
ParticipantI am using latest version of both. Ignite theme.
I meant by #1 ques
when I added extra field in registration form which is Date of birth, I gave option in drop down date format. but it is giving year of birth till 2037 while registering which is not logical coz its 2014 and when I tried to register as user and select my year of birth 2016, it accepted. how is it possible that I am entering value which is not come yet (year 2016 is not applicable value).
Q 4. Is it possible if you will provide any CSS and I will add somehwere coz I think its too much technical for me 🙂
September 2, 2014 at 3:49 pm #188992In reply to: Extended Profile Deletes Base Profile "Display Name"
Sokrates
ParticipantHi, Just in case it’s of use….
I’m a bit of a BP newb, and I’m using a fresh install of WP 3.9.2 and BP 2.0.1
I’m using a Gravity form as a registration form with the GravityForms User Registration add-on to register BuddyPress users.
As a newb, I have been experimenting a lot with the XProfile fields, and also noticed that at some stage of the proceedings, I had made a change that resulted in the same problem as in the first post – the WordPress last name value was deleted and the firstname field was set to the nicename when the update profile button was pressed.
I had changed the primary field in the XProfile fields from “Name”.
Replacing the primary field as Name, and mapping the “full name” field from the Gravity form to this field in the Gravity User Registration add-on screen seems to solve it for me
September 1, 2014 at 10:51 pm #188891In reply to: Dropdown group list on registration page
dolliv
ParticipantI’ve came across this plugin on my search, but that’s only in checkbox form… Any chance of getting that in dropdown form?
September 1, 2014 at 10:47 pm #188890In reply to: Dropdown group list on registration page
shanebp
ModeratorIt’s possible, but not easy.
You need to be logged in to join or create a group.
So you’d have to store the join/create group data until they complete their registration, activate their account and maybe log-in the first time.That would require custom code written by a web developer familiar with BP.
I’m not aware of such a plugin or code already existing.August 31, 2014 at 11:25 pm #188846In reply to: BuddyPress register function
danbp
ParticipantAugust 31, 2014 at 6:35 pm #188834In reply to: Activate component
bp-help
Participant@sam01389
Activate component? Not entirely sure what you mean. A user registers on the site then they are sent an email which may or may not go into that users spam folder depending on the server after which they are instructed to click the activation link in that email. If your users are not receiving this email after registration then you may want to check your servers error logs and report back.August 31, 2014 at 8:52 am #188803In reply to: Undisplay some Fields required in Reg.Process
danbp
ParticipantAugust 27, 2014 at 3:03 pm #188563In reply to: Hide Admin from Members and Activity
danbp
Participanthi @canadadre,
already asked and answered many times.
https://buddypress.org/support/search/Hide+Admin/And the most recent answer with a partial solution is here:
https://buddypress.org/support/topic/overwrite-whos-online-widget-theme/Partial means you have to complete the work, by using the same method, as the given example concern only one core widget, and not the 2 other (the 4th is the registration widget).
August 26, 2014 at 6:51 pm #188530spiriality
ParticipantI had done that – created pages with the titles and assigned them – then I thought it as the wrong thing to do, and I removed them. But that is the right thing to do?
Those pages will automatically become registration pages without me having to add anything to the pages?
August 26, 2014 at 2:48 pm #188510In reply to: Register CSS Style
Jencina
ParticipantI’m sorry I can’t do that.
I’m my register.php page there are two <div .
<div id="my-custom-registration">
and<div class="register-section" id="basic-details-section">
:Mod Edit// tinypic link removed as too spammy and using re-directs to other sites.
I’m trying to do that in CSS with “#my-custom-registration” and “#register-section”, but no luck.
Sorry for my ignorance
August 24, 2014 at 12:42 pm #188358Jencina
ParticipantSorry, not all is well.
I edit in my custom “register.php” , but I can’t see anything. This is the code of my register custom page:
<?php global $bp; if(empty($bp->signup->step)) $bp->signup->step=’request-details’; ?> <form action="” name=”signup_form” id=”signup_form” class=”standard-form” method=”post” enctype=”multipart/form-data”> <?php if ( 'registration-disabled' == bp_get_current_signup_step() ) : ?> <?php do_action( 'template_notices' ); ?> <?php do_action( 'bp_before_registration_disabled' ); ?> <p><?php _e( 'User registration is currently not allowed.', 'buddypress' ); ?></p> <?php do_action( 'bp_after_registration_disabled' ); ?> <?php endif; // registration-disabled signup setp ?> <?php if ( 'request-details' == bp_get_current_signup_step() ) : ?> <?php do_action( 'template_notices' ); ?> <p><?php _e( 'Registering for this site is easy. Just fill in the fields below, and we\'ll get a new account set up for you in no time.', 'buddypress' ); ?></p> <?php do_action( 'bp_before_account_details_fields' ); ?> <div class="register-section" id="basic-details-section"> <?php /***** Basic Account Details ******/ ?> <h4><?php _e( 'PRUEBA', 'buddypress' ); ?></h4> <label for="signup_username"><?php _e( 'Username', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_username_errors' ); ?> <input type="text" name="signup_username" id="signup_username" value="<?php bp_signup_username_value(); ?>" /> <label for="signup_email"><?php _e( 'Email Address', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_email_errors' ); ?> <input type="text" name="signup_email" id="signup_email" value="<?php bp_signup_email_value(); ?>" /> <label for="signup_password"><?php _e( 'Choose a Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_password_errors' ); ?> <input type="password" name="signup_password" id="signup_password" value="" /> <label for="signup_password_confirm"><?php _e( 'Confirm Password', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_password_confirm_errors' ); ?> <input type="password" name="signup_password_confirm" id="signup_password_confirm" value="" /> <?php do_action( 'bp_account_details_fields' ); ?> </div><!-- #basic-details-section --> <?php do_action( 'bp_after_account_details_fields' ); ?> <?php /***** Extra Profile Details ******/ ?> <?php if ( bp_is_active( 'xprofile' ) ) : ?> <?php do_action( 'bp_before_signup_profile_fields' ); ?> <div class="register-section" id="profile-details-section"> <h4><?php _e( 'Profile Details', 'buddypress' ); ?></h4> <?php /* Use the profile field loop to render input fields for the 'base' profile field group */ ?> <?php if ( bp_is_active( 'xprofile' ) ) : if ( bp_has_profile( array( 'profile_group_id' => 1, 'fetch_field_data' => false ) ) ) : while ( bp_profile_groups() ) : bp_the_profile_group(); ?> <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?> <div class="editfield"> <?php $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() ); $field_type->edit_field_html(); do_action( 'bp_custom_profile_edit_fields_pre_visibility' ); if ( bp_current_user_can( 'bp_xprofile_change_field_visibility' ) ) : ?> <p class="field-visibility-settings-toggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>"> <?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> <a href="#" class="visibility-toggle-link"><?php _ex( 'Change', 'Change profile field visibility level', 'buddypress' ); ?></a> </p> <div class="field-visibility-settings" id="field-visibility-settings-<?php bp_the_profile_field_id() ?>"> <fieldset> <legend><?php _e( 'Who can see this field?', 'buddypress' ) ?></legend> <?php bp_profile_visibility_radio_buttons() ?> </fieldset> <a class="field-visibility-settings-close" href="#"><?php _e( 'Close', 'buddypress' ) ?></a> </div> <?php else : ?> <p class="field-visibility-settings-notoggle" id="field-visibility-settings-toggle-<?php bp_the_profile_field_id() ?>"> <?php printf( __( 'This field can be seen by: <span class="current-visibility-level">%s</span>', 'buddypress' ), bp_get_the_profile_field_visibility_level_label() ) ?> </p> <?php endif ?> <?php do_action( 'bp_custom_profile_edit_fields' ); ?> <p class="description"><?php bp_the_profile_field_description(); ?></p> </div> <?php endwhile; ?> <input type="hidden" name="signup_profile_field_ids" id="signup_profile_field_ids" value="<?php bp_the_profile_group_field_ids(); ?>" /> <?php endwhile; endif; endif; ?> <?php do_action( 'bp_signup_profile_fields' ); ?> </div><!-- #profile-details-section --> <?php do_action( 'bp_after_signup_profile_fields' ); ?> <?php endif; ?> <?php if ( bp_get_blog_signup_allowed() ) : ?> <?php do_action( 'bp_before_blog_details_fields' ); ?> <?php /***** Blog Creation Details ******/ ?> <div class="register-section" id="blog-details-section"> <h4><?php _e( 'Blog Details', 'buddypress' ); ?></h4> <p><input type="checkbox" name="signup_with_blog" id="signup_with_blog" value="1"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes, I\'d like to create a new site', 'buddypress' ); ?></p> <div id="blog-details"<?php if ( (int) bp_get_signup_with_blog_value() ) : ?>class="show"<?php endif; ?>> <label for="signup_blog_url"><?php _e( 'Blog URL', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_blog_url_errors' ); ?> <?php if ( is_subdomain_install() ) : ?> http:// <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" /> .<?php bp_blogs_subdomain_base(); ?> <?php else : ?> <?php echo home_url( '/' ); ?> <input type="text" name="signup_blog_url" id="signup_blog_url" value="<?php bp_signup_blog_url_value(); ?>" /> <?php endif; ?> <label for="signup_blog_title"><?php _e( 'Site Title', 'buddypress' ); ?> <?php _e( '(required)', 'buddypress' ); ?></label> <?php do_action( 'bp_signup_blog_title_errors' ); ?> <input type="text" name="signup_blog_title" id="signup_blog_title" value="<?php bp_signup_blog_title_value(); ?>" /> <span class="label"><?php _e( 'I would like my site to appear in search engines, and in public listings around this network.', 'buddypress' ); ?>:</span> <?php do_action( 'bp_signup_blog_privacy_errors' ); ?> <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_public" value="public"<?php if ( 'public' == bp_get_signup_blog_privacy_value() || !bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Yes', 'buddypress' ); ?></label> <label><input type="radio" name="signup_blog_privacy" id="signup_blog_privacy_private" value="private"<?php if ( 'private' == bp_get_signup_blog_privacy_value() ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'No', 'buddypress' ); ?></label> <?php do_action( 'bp_blog_details_fields' ); ?> </div> </div><!-- #blog-details-section --> <?php do_action( 'bp_after_blog_details_fields' ); ?> <?php endif; ?> <?php do_action( 'bp_before_registration_submit_buttons' ); ?> <div class="submit"> <input type="submit" name="signup_submit" id="signup_submit" value="<?php esc_attr_e( 'Complete Sign Up', 'buddypress' ); ?>" /> </div> <?php do_action( 'bp_after_registration_submit_buttons' ); ?> <?php wp_nonce_field( 'bp_new_signup' ); ?> <?php endif; // request-details signup step ?> <?php if ( 'completed-confirmation' == bp_get_current_signup_step() ) : ?> <?php do_action( 'template_notices' ); ?> <?php do_action( 'bp_before_registration_confirmed' ); ?> <?php if ( bp_registration_needs_activation() ) : ?> <p><?php _e( 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.', 'buddypress' ); ?></p> <?php else : ?> <p><?php _e( 'You have successfully created your account! Please log in using the username and password you have just created.', 'buddypress' ); ?></p> <?php endif; ?> <?php do_action( 'bp_after_registration_confirmed' ); ?> <?php endif; // completed-confirmation signup step ?> <?php do_action( 'bp_custom_signup_steps' ); ?> </form> </div> <?php do_action( 'bp_after_register_page' ); ?> </div><!-- #buddypress -->
August 24, 2014 at 7:57 am #188350danbp
ParticipantHi @jencina,
set the registration page as homepage. (dashboard > Setting > Front page view).
Make also a child theme and add a copy of the register.php file who is in /bp-templates/bp-legacy/buddypress/members/ and add it to your child, using the same path.
/your-theme/buddypress/members/register.php
On this copy you can add/remove and make any change you want for your new homepage.
Reference
https://codex.wordpress.org/Creating_a_Static_Front_PageAugust 23, 2014 at 8:49 am #188312danbp
ParticipantHi @ww2boy,
Yes ! 😉 Give this a try. Add it to child theme’s functions.php or bp-custom.php
function bpfr_hide_profile_edit( $retval ) { // remove field from edit tab if( bp_is_profile_edit() ) { $retval['exclude_fields'] = '54'; // ID's separated by comma } // allow field on registration page if ( bp_is_register_page() ) { $retval['include_fields'] = '54'; // ID's separated by comma } // hide the filed on profile view tab if ( $data = bp_get_profile_field_data( 'field=54' ) ) : $retval['exclude_fields'] = '54'; // ID's separated by comma endif; return $retval; } add_filter( 'bp_after_has_profile_parse_args', 'bpfr_hide_profile_edit' );
Codex reference:
https://codex.buddypress.org/plugindev/using-bp_parse_args-to-filter-buddypress-template-loops/August 22, 2014 at 9:57 pm #188292In reply to: Limiting Membership Profiles
Henry Wright
ModeratorHi @grkmp
All activated members get allocated a URL. For example: example.com/members/username. Actually, to my knowledge, even unactivated members are given a URL so in theory any person who has completed the registration form will have a profile. They way around this would be to implement a custom registration form which doesn’t make use of the default functionality.
August 22, 2014 at 5:44 pm #188277In reply to: [Resolved] No button for finishing registration
1a-spielwiese
Participant“And seemling there were already in former times similar problems – without solution:
https://buddypress.org/support/topic/complete-sign-up-button-not-working-on-register-page/
and
https://buddypress.org/support/topic/registration-button-invisible/
Yesterday I found other descriptions of similar problems – as well without solution.”
https://buddypress.org/support/topic/no-button-for-finishing-registration/#post-187040Here is at least one:
https://buddypress.org/support/topic/submit-button-missing-from-sign-up-page/
August 22, 2014 at 4:11 pm #188274In reply to: Registration page NOT working!
bulltalk.65
Participant@bp-help I added or wrote what the message holder asked me to add, “current version of wordpress” current version of buddypress” and link to site so that’s what I did, it didn’t ask for anything else and I didn’t know..
Anyhow, I figured it out this morning, the homepage was cached and the registration link had been changed since it was cached when we opened the site a month ago. I went in and removed the cached files from the server/database and now everything is working fine.
Thanks
August 22, 2014 at 6:42 am #188232In reply to: [Resolved] Auto-generate password & name?
bridieamelia
ParticipantI know this is an old post but I searched and searched for a solution to this and finally found one today, so will repost here for others. The solution does require installing Gravity Forms, and then you also need to install the GF User Registration Add-On (check the Add-On item in your Forms dashboard menu). Create a registration form with Gravity Forms, then add a User registration feed, and not only can you opt for automatic password generation but you can also map fields to Buddypress 🙂
August 22, 2014 at 4:08 am #188231In reply to: Registration page NOT working!
bp-help
Participant@bulltalk65
It would help if you would list all the plugins you are using. You really should bulk deactivate all of them except BuddyPress and re-activate each one individually and test registration against each one until you find the plugin that is causing your issue, and if that is not the problem you need to check your servers error logs.August 21, 2014 at 9:44 pm #187852In reply to: using placeholder attribute instead of label
mmadden
ParticipantThanks for your reply! I’m not sure I explained myself very well… When I refer to “placeholder”, I mean the text that is already in the input field when the page loads. This will be a responsive them and the end goal here is to save as much space as possible on the registration form by removing the labels altogether. I need to be able to output some default text into the field that will then disappear when the user begins typing in that field.
August 21, 2014 at 8:51 am #187665In reply to: register.php
danbp
Participantthere are only two files […] which need to be modified.
False.
If you use the old BP-default theme, you only modify a copy of bp-themes/bp-default/registration/register.php placed in your child-theme
If you use any other theme, you modify only bp-legacy/buddypress/members/register.php
placed in the child /your-child-theme/buddypress/members/register.phpThe one or the other, but not both. And don’t forget that you should never modify core files, as your work will be lost at the next BP update. That’s why child-theme exist and is so important for customization.
If this change doesn’t work (but it should), you have to try something different.
Create a language file containing only the mentionned string.
Read here.Do you already use a language file ? §Is your site in english ? If not indicate the used language.
And gave your plugin list and theme name. It could be you have somewhere a conflict with ajax who block something on the registration page.August 21, 2014 at 5:46 am #187654In reply to: register.php
sachin550
Participant@danbp i tried with
https://wordpress.org/plugins/quick-cache/
but still getting same line !!
Create an Account
Registering for this site is easy, just fill in the fields below and we’ll get a new account set up for you in no time.
there are only two files
- plugins/buddypress/bp-themes/bp-default/registration/register.php
- bp-templates/bp-legacy/buddypress/members/register.php
which need to be modified i have done that but getting same @aces @mercime
August 20, 2014 at 11:33 pm #187635In reply to: strong passwords
danbp
Participantbp_core_general_settings_before_submit is not a function but an action hook.
@cwjordan, maybe interesting things to find
Line 43: http://phpxref.ftwr.co.uk/buddypress/nav.html?bp-core/bp-core-settings.php.source.htmlA bbpress half soluce :
For inspiration ? This old BP plugin…
https://wordpress.org/plugins/bp-xtra-signup/
More recent
https://wordpress.org/plugins/login-security-solution/ (maybe not compatible with BP)If not affraid of expirimentation:
https://github.com/mgmartel/BuddyPress-Password-Strength-Meter/blob/master/bp-password-strength-meter.phpFor the fun, on @imath ‘s blog (in french), some code to study (php is in english)
August 20, 2014 at 8:11 pm #187288In reply to: [Resolved] No show in members list
danbp
ParticipantDid you discovered them in the Pending Registration Tab ?
Maybe related:
https://buddypress.org/support/topic/exclude-pending-users-in-alphabetical-listing/
https://buddypress.org/support/topic/resolved-why-does-it-show-i-have-more-members-than-shown/#post-137800August 20, 2014 at 7:38 pm #187274In reply to: BuddyPress integration with Aweber
August 20, 2014 at 7:18 pm #187273In reply to: BuddyPress integration with Aweber
SAPinfoASAP
ParticipantHi,
Unfortunately that doesn’t work as I intended. It creates a widget on the side (that is somewhat buggy), however it doesn’t automatically subscribe people to aweber when they register for an account in my forum.
I have done a lot of digging and have found that gravity forms can integrate with aweber, though I’m not sure how this would work with buddypress. Can you use gravity forms to replace the buddypress default registration page?
-
AuthorSearch Results