Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 1,126 through 1,150 (of 7,641 total)
  • Author
    Search Results
  • #273005
    mechwiy
    Participant

    hello, thank you it worked

    I have few other questions :

    1) what about the css, I tried to edit it but the css of the registration page is not changing even with the !important, ps : I tried to add the css rules in the registration page with visual composer. Usually when the css rule is not working properly I can find the rule in the console and the rule is crossed out, but here in this case I can’t even find the css rules that I added.

    2) how can I disable the sentence “this field can be seen by X” , I tried to disable it with the css rule display:none but I got the problem that I described in the first point, is there another way to disable it other than with the css ?

    thank you for your answers

    #272931

    In reply to: Cyrillic in username

    Venutius
    Moderator

    BuddyPress uses the WordPress user database, so I think this is more of a general WordPress issue than one specific to BuddyPress in that if you removed BuddyPress and allowed user registrations to WordPress you would still be faced with the same issue.

    You could raise this as a bug on BuddyPress Trac. but I think it’s probably WordPress that would need to change.

    #272893
    emmanuel1234
    Participant

    wordpress Version 4.9.5, buddypress Version 2.9.4 theme: sweetdate

    https://www.eumello.com/

    hi i would like to have an additional Member Directory (keep default, and have a new page with a custom member directory).

    In this new Custom Member Directory, I would like to filter users base on the fields they had selected upon registration. Basically create a list of Member Suggestions.

    Any idea on how to make this happen?

    #272845
    Venutius
    Moderator

    Which plugins are you talking about? Some plugins can work for years after the last update.

    I recommend moderating new sign ups using BP Registration Options and coupling that with required registration fields that allow you to judge who is requesting signup. ( “About me” for example, spammers typically fill this with spam, so a dead giveaway, “location” is another one, spammers rarely declare their location to be that reflected in their IP address).

    #272828
    wbcomdesigns
    Participant

    @omniscope Please make sure new users have verified their emails after registration. New Users will display inside the member’s directory only after their first login, it’s generated based on their last active timestamp.
    You can also check following thread

    Members Not Showing

    #272820
    Venutius
    Moderator

    All of the fields that are in the Base field group will appear in the registration page, if you add another field group and add those fields there they will not be shown on registration.

    #272818
    Abe
    Participant

    Hi there.

    Wordpress: 4.95
    BuddyPress: 2.94
    All other plugins are up-to-date.

    Website: https://www.potatoesandrice.com

    This is an intermittent issue, so maybe difficult to resolve. I’m hoping you may have some ideas or may have run across this before and therefore have some suggestions 🙂

    Buddypress came bundled in my WordPress theme (Sweetdate) by SeventhQueen.

    I have a database of users – currently close to 900 members. When I have a new user register, I receive an email notifying me of their registration along with their username and email. I copy their username and go to the WordPress backend > Users and do a search for the username to edit their status. Now here’s the intermittent issue. I’d say 1 out of 10 (approx.) emails that I get, I am unable to find the user in the user area of the backend or in the front end as well. Interestingly enough, I have another plugin (Newsletter) that collects user info at signup and that plugin DOES have the missing user details.

    I contacted SeventhQueen first and they gave the following response:

    – You’re having database continuity issues at the host level, either your database is failing intermittently or your host is restoring temporary backups of your database.

    So, next I contacted my host (siteground) and they gave the following response:

    I am unable to find anything in the apache error logs that can indicate an issue with the users.

    Most likely the issue is coming from the plugin responsible for the user registrations.

    I know normally we would disable other plugins to see if there is any kind of conflict, but since this issue is so intermittent, that would mean disabling my site fo a long time and not really knowing if it has been resolved.

    Thanks in advance for any help 🙂

    Abe

    #272817
    mechwiy
    Participant

    Hello,

    I created some fields in the users -> profile fields section, the problem is that all those fields that I created appears in the registration form and I don’ want that, I want that the user fill those fields after the registration directly in his profile page if he wants to.

    Is there another option that making those fields optional and disabling their visibilities with the css in the registration form ?

    thank you for your help

    elagoon
    Participant

    Hi Team,

    When we register through budypress default registration through one of my client site

    http://www.learn.awecademy.org.

    Everytime i am getting email with header via server host name(info@mydomain.com via server_hostname).

    What i have done till now.

    In Change My Child theme.

    1)add_filter( ‘bp_email_set_from’, ‘filter_bp_email_set_from’, 10, 4 );

    2)Set WP SMTP For email.

    3)add_filter( ‘wp_mail_from’, ‘wpb_sender_email’ ); –add my theme function.php

    4)add_filter( ‘wp_mail_from_name’, ‘wpb_sender_name’ );–add my theme function.php

    5)Also WordPress Include Plugable.php i have remove the from name and email and set admin_email

    Please suggest what i have to do to resolve this problem.

    Regards
    Subhajit Sadhukhan
    Elagoon Development.

    dennis.cabasal
    Participant

    Hi,

    I’m new to buddypress and I was trying to add the xprofile fields to admin email after activation.

    I found this code and I’m desperately trying to figure out how to make it work.

    /*
    Plugin Name: Custom New User Email
    Description: Changes the copy in the email sent out to new users
    */
     
    // Redefine user notification function
    if ( !function_exists('wp_new_user_notification') ) {
        function wp_new_user_notification( $user_id, $plaintext_pass = '' ) {
            $user = get_userdata( $user_id );
          
    	// The blogname option is escaped with esc_html on the way into the database in sanitize_option
    	// we want to reverse this for the plain text arena of emails.
    	$blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
    	
    	// find the profile field for referrer
    	//$field1 = xprofile_get_field_data( 'Referrer', $user_id );
            $field1 = xprofile_get_field_data( 'field_id=1', $user_id );
            $field2 = xprofile_get_field_data( 'field_id=2', $user_id );
            $field3 = xprofile_get_field_data( 'field_id=3', $user_id );
    	$field4 = xprofile_get_field_data( 'field_id=4', $user_id );
    	$field5 = xprofile_get_field_data( 'field_id=5', $user_id );
    	$field6 = xprofile_get_field_data( 'field_id=6', $user_id );
    	$field7 = xprofile_get_field_data( 'field_id=32', $user_id );
    	$field8 = xprofile_get_field_data( 'field_id=8', $user_id );
    	$field9 = xprofile_get_field_data( 'field_id=9', $user_id );
    	$field10 = xprofile_get_field_data( 'field_id=10', $user_id );
    	$field11 = xprofile_get_field_data( 'field_id=13', $user_id );
    	$field12 = xprofile_get_field_data( 'field_id=16', $user_id );
    	$field13 = xprofile_get_field_data( 'field_id=25', $user_id );
    
    	$message  = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n";
    	$message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n";
    	$message .= sprintf(__('E-mail: %s'), $user->user_email) . "\r\n\r\n";
    	$message .= sprintf(__('First Name: %s'), $field1) . "\r\n";
    	$message .= sprintf(__('Last Name: %s'), $field2) . "\r\n";
    	$message .= sprintf(__('Job Title: %s'), $field3) . "\r\n";
    	$message .= sprintf(__('Company: %s'), $field4) . "\r\n";
    	$message .= sprintf(__('Address 1 : %s'), $field5) . "\r\n";
    	$message .= sprintf(__('Address 2 : %s'), $field6) . "\r\n";
    	$message .= sprintf(__('Country	: %s'), $field7) . "\r\n";
    	$message .= sprintf(__('City: %s'), $field8) . "\r\n";
    	$message .= sprintf(__('Zip: %s'), $field9) . "\r\n";
    	$message .= sprintf(__('Phone: %s'), $field10) . "\r\n";
    	$message .= sprintf(__('Fax: %s'), $field11) . "\r\n";
    	$message .= sprintf(__('Relationship: %s'), $field12) . "\r\n";
    	$message .= sprintf(__('Interest: %s'), $field13) . "\r\n";
    
    	@wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message);
    
    	if ( empty($plaintext_pass) )
    		return;
    
    	$message  = sprintf(__('Username: %s'), $user->user_login) . "\r\n";
    	$message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n";
    	$message .= wp_login_url() . "\r\n";
    
    	wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message);
     
         }
    }
     

    Please help.

    Thank you so much

    Dennis

    #272808

    In reply to: GDPR compliance

    HDcms
    Participant

    Hello,
    It’s a question of choice. Buddypress is like a big form.
    I’m just asking for the possibility that there is a checkbox field at registration (with a link to a GDPR information page) that will no longer appear as a choice in the profile
    Regards

    yusareba
    Participant
    #272790
    yusareba
    Participant
    #272787
    yusareba
    Participant

    Ah, honestly I saw author date and the words

    “I suspect also people are mixing up the “log in” page with the user registration form, which are two very different things.”

    And mistook it for an invalid thread.

    In any case, I posted there as the function that was provided didn’t seem to work.
    Thank you for helping (again lol..)

    yusareba
    Participant

    Strangely that function doesn’t seem to change anything for me. When BP is enabled, registration links are still changed to go to /register/ rather than the default :v

    #272781
    yusareba
    Participant

    I’m sure this has came up before, however I haven’t found a recent search result that works.

    When BuddyPress is enabled it overrides the default WP registration page.

    How can I prevent this from happening?

    #272613

    In reply to: Registration Page 404

    Buddy Quaid
    Participant

    I just disabled BuddyPress from the Network > Dashboard > Plugins

    and the registration page started working. It was showing BuddyPress fields and I was wondering how this could be happening since I just disabled it.

    I checked out the main sites plugins and BuddyPress is activated there. So my question is, could it have been double activated? Once on the website and once in the network? I have a multisite operation. Where should it be activated? Network or on the actual site?

    #272601
    Buddy Quaid
    Participant

    I update my sites plugins and core whenever there are updates. All of a sudden, I started having issues with all BuddyPress pages and I didn’t know why.

    First I was getting 404 errors when going to ALL BuddyPress pages. I managed to find a fix which was to give each user the role of “Customer” which is a custom user role I made with User Role Editor. I don’t know why this would be the case or how it changed.

    Now that people can go to those pages, unregistered, non-logged in users cannot register!

    I have tried creating a brand new page called register with vanilla settings and only a title and being able to go to it normally without an error. When I select ANY page through the BuddyPress ‘Pages’ options for registration, I get a 404 error.

    Please help! I can’t register any new users and this looks bad that I can’t fix it!!!

    Thanks,

    Buddy

    graphitewp2
    Participant

    Thank you Paul for commenting. I wish I was clearer.

    I was referring to the Log In and Register buttons on the admin bar (which is Buddypress) in the top left.

    Im using this to disable BuddyPress’ registration process and fallback to WordPress. I want to merely change the link of the Log In button so it goes to my custom login page. How do you go about doing it?

    
    <?php
    
    /**
     * Disables BuddyPress' registration process and fallsback to WordPress' one.
     */
    function my_disable_bp_registration() {
      remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
      remove_action( 'bp_screens', 'bp_core_screen_signup' );
    }
    add_action( 'bp_loaded', 'my_disable_bp_registration' );
    
    ?>
    mubiesam
    Participant

    As stated “It was there, but not sure what was the cause, now it disappeared.”

    I had removed all 3 plugins…BuddyPress, BuddyPress Registration Options, and Super Socializer. While installed back the Super Socializer, found something weird…

    My multisite main site https://johocen.com/ show the toolbar correctly, but subsite https://lt.johocen.com/ just disappeared.

    It means, without BuddyPress and BuddyPress Registration Options, the toolbar problem is still there, but what happened was, https://lt.johocen.com/ is the only site installed with these 2 plugins.

    It sounds strange, but it seems the toolbar was disappeared right after I had added this line at the end of bp-registration-options/includes/core.php
    add_action( 'the_champ_user_successfully_created', 'bp_registration_options_notify_pending_user', 10, 1 );
    But now even I had removed BuddyPress and BuddyPress Registration Options, the problem is still there.

    I noticed that even the plugin removed, but the database created for plugin is still stored, is there a way to completely removed the plugin and it’s db?

    This problem is driving me crazy, any help is highly appreciated.

    #272578
    luke_devon
    Participant

    Hi

    In buddypress , I want to create two different user types. For example, Staff and Students. I want let them to register by selecting appropriate user type during the registration process.

    also I want let them to select their user type during the log in process .

    Can somebody help me on this please?

    Thank you
    Luke

    Norman Cates
    Participant

    Thank you.

    However, I am using a plugin that sends an email invite to people whoare to become users.

    They fill in a simple registration form, then submit it.

    And then log in to the website.

    At that point, they have access. They haven’t gone through any Buddypress registration forms.

    So I can’t hook those actions.

    At what point in the user registration process do the xProfile fields get created/populated for a new user. eg. When does the default Name field get populated in the user registration process.

    And is there a corresponding action I could hook?

    mubiesam
    Participant

    Toolbar? (user profile picture of buddypress on the top right) disappeared.

    “Show the Toolbar for logged out users” was checked.
    Related plugins installed: BuddyPress Registration Options / Super Socializer

    It was there, but not sure what was the cause, now it disappeared.

    Any help to point a direction is appreciated.

    Venutius
    Moderator

    There are two template files that are pertinient – plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php and activate.php

    Inside these pages there are do_action functions that allow you to hook an action on that particular stage of the registration page. For example in activate.php there is bp_after_activation_page you could hook on that and check the user has successfully activated their account and gather your data.

    #272513
    yodam
    Participant

    Hi,
    I’ve created some custom fields for user profile and tryed some themes.

    At registration page I have dates and radio that always goes on new line (also date day,year and month are really too large).

    What can I do?

    Is also possible to have profile fields under (and not beside) account data?

    Thanks!

Viewing 25 results - 1,126 through 1,150 (of 7,641 total)
Skip to toolbar