Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 851 through 875 (of 7,641 total)
  • Author
    Search Results
  • #302593
    drstrats
    Participant

    Hi
    I’m using BuddyPress and upon registration of users, the email notifications are sent using the hosting server which lands 100% of the times at spam folder.
    to solve this I’ve installed the WP Mail SMTP plugin but this it didn’t affect BuddyPress Smtp settings.
    Please someone with a solution to solve this.
    Thanks

    #302566
    Julia_B
    Participant

    Sorry, me again. I’ve been trying to figure this out all day and I just can’t fix it.

    I’ve tried deactivating all plugins, uninstalling and reinstalling buddypress and I’ve also disabled the site’s avada theme and switched to 2019, but the issue persists.

    I’ve noticed that the activity page has also stopped working and is now blank.

    Before this error the registration page had a field for display name which is now missing, yet the profile details header remains. Here’s a screenshot: https://www.dropbox.com/s/kwdznzvx67oyrao/Screenshot%202019-02-02%2016.14.29.png?dl=0

    Or the page itself is here: http://gym.juliabuckleyfitness.com/register/

    Hope someone can help 🙂

    #302564
    kenjames
    Participant

    Am a novice but am using WP 5.03 with Buddypress 4.0 and bbpress 1.5.14. The site is https://908X0.org. It is not live and Registration has been disabled. New users have Subscriber role for buddypress and Participant for Forums. My problem: all new users I have created have the capability to Edit Pages after login. I thought it had something to do with my IP or browser but cleared the browser and sent the link to my site to a friend and he could see the Edit Page text in the admin bar. I disabled every plugin, including bbpress. The bug is still there. I have built an almost identical site that does not have this problem.

    I am not a developer or a coder. I can follow explicit instructions to make changes in the C-panel or elsewhere, but most of the time I just expect things to work like they are supposed to. I can generally find solutions or work-arounds but this one has me stumped. I have been unable to find anything on line about this problem. Does anyone have any idea what may be causing this?

    #302561
    Julia_B
    Participant

    Yesterday I made changes to the mailchimp integration which is set up through S2member so I think it could be related to that. It’s the only thing I’ve changed between registration working and not working so I guess it must be.

    #302558
    Julia_B
    Participant

    Thanks @venutius

    On closer inspection, I wonder if the issue is actually being caused by the S2Member plugin my site uses.

    I guess I need to speak to their support but can you tell me please what url the user should be redirected to as standard after completing the buddypress registration form at mysite.com/register/ ?

    #302557
    Venutius
    Moderator

    Ok, then the next step is to go through the standard debugging steps by deactivating all other plugins apart from BuddyPress and see if registration works then, if it’s still the same try switching to the 2017 theme and test again.

    #302550
    Julia_B
    Participant

    I’m not sure why but my registration page is suddenly not functioning properly.

    After completing the details at mysite.com/register/ users are directed to the homepage rather than the page saying to check their emails for the activation link.

    Activation emails are not being set and the info they enter on the registration page is lost (i.e. they’re not added to pending members).

    I changed the copy in the on the registration page last week in the file at wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php – but I tested the page extensively afterwards and it seem to work fine and I didn’t touch any of the code, I just edited the page text.

    It’d be great to get help soon as I’m currently running a promotion to join but no one can register so it’s kind of a nightmare!

    Thanks guys. 🙂

    MorgunovVit
    Participant

    Hi, everybody!

    Could you help me to set set display_name = xprofile ‘first_name’ + ‘last_name’ at the user registration?
    I’ve tryed this code:

    
    function change_user_defaults($user_id) {
    	$user = get_userdata($user_id);
            $mv_first_name = xprofile_get_field_data(  26,  $user_id ); 
            $mv_last_name = xprofile_get_field_data(  11,  $user_id );  
            $name = $mv_first_name . ' ' . $mv_last_name; 
            $mv_login = $user_id . stristr($user->user_email, '@', true); 
            if ($name !== ' '){
                $args = array(
                        'ID' => $user_id,
                        'display_name' => $name
                );
                wp_update_user( $args );
            }
    }
    
    add_action( 'xprofile_updated_profile', 'change_user_defaults' ); /* but this works only after manual BuddyPress profile update */
    
    /* I also tried these hooks too */
    add_action( 'bp_core_signup_user',      'change_user_defaults' ); 
    add_action( 'bp_core_activated_user',   'change_user_defaults' );
    /* but it didn't work at the user registration  */
    
    sdeeds
    Participant

    Hey, first post here,
    I’m using a WordPress install with MemberPress to manage registrations.

    I then am using bbPress for a forum, and BuddyPress for Profiles, Messaging, etc.

    When a new user registers, a very peculiar thing happens.

    The WP Username and the BuddyPress name, stored in the wp_bp_xprofile_data do not match.
    In some cases, this also becomes imported_{username}.

    In the case where it the BuddyPress name becomes imported_{username} it seems to be associated with bbPress, in this file /plugins/bbpress/includes/admin/converter.php, starting on line 970.

    However, I can’t seem to track down where seemingly random usernames are coming from, and WHY…

    In the example image, if I were to search the database for bobbytaylor5971 the only instance of that string is in the one row in wp_bp_xprofile_data. Correct user_id, wrong value.

    I’ve been trying to figure this out for months, and so far, we’ve just been manually updating each new registered user.

    Any thoughts on this issue?

    Thanks for the help.

    #302486
    mackymickman
    Participant

    I’d like to create a topic with his name at user registration.

    What’s wrong with this code:

    function bp_user_fst_topic (){
    
        // get user name	
        $user_data = get_user_by( 'id', bp_loggedin_user_id() )->data;
        $user_nicename = = $user_data->user_nicename;
    
        // create slug
        $new_slug = 'first-topic-' . $user_nicename;
    
        // create topic
        $post_value = array(
            'post_name' => $new_slug,
            'post_type' => 'topic',
            'post_author' => $userid,
            'post_title' => 'first topic',
            'post_content' => 'This topic was created when you registered.',
            'post_category' => array(1,5), 
            'tags_input' => array('tag1','tag2'), 
            'post_status' => 'publish' 
        );
        wp_insert_post($post_value);
    
    }
    add_filter( 'bp_core_activated_user', 'bp_user_fst_topic',1 );

    Could you tell me how to do this..?

    #302478
    ashley72
    Participant

    Update, I did finally receive at activation email. After I did a resend activation after the first registration activation didn’t arrive after approx 10 mins. But it does not seem very reliable in my early tests. I will tried on few more different email addresses just to get a measure of how well it performs in general. But since it is the first experience one has with the website, failures are going to kill the traffic quick smart 🙁

    IMHO, account activation is a core function that needs to be super reliable.

    #302449
    msteimann
    Participant

    I think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.

    Thank your for looking into this, Venutius. Good to know that I can now raise a bug report, and a feature request as well. Thank you and your team for putting so much effort into this really great plugin!

    #302445
    Venutius
    Moderator

    I think you’ve identified a bug with the registration form, it misleadingly gives the impression that the visibility for the Name field can be changed. Wuld you mind raising a bug report on https://buddypress.trac.wordpress.org/ ? Also you can use the same link to raise your feature request.

    #302438
    msteimann
    Participant

    Thanks for your quick reply, Venutius!

    I have tried the WP 2015 Theme and got the same results. So I switched back to KLEO and noticed, that the xProfile fields do change to the desired visibility settings, AFTER the user clicks the SAVE SETTINGS button. So I guess I was confused by the fact that BEFORE you hit the save button there is a misleading visual feedback (the visibility term does not alter to the according setting the user has just changed it to, it still displays the same value as before).

    Could this be changed in the next release?

    My first problem still remains: the „change display name visibility option“ is displayed beneath the name field on the user Registration page. This doesn’t make sense, if the name’s visibility throughout BuddyPress network is mandatory. How can I get rid of this line? Does this line and it’s user changeable visibility options really not appear on a default install?

    In the WP Dashboard I cannot change the options for the primary Name field. Only the fields under the details tab can be altered by admin and set to be visibility-changeable by the user. (Hope you understand what I try to say 😉

    Regards,
    Martin

    Hide visibility option on registration page?

    #302432
    msteimann
    Participant

    Hello,

    I am using the KLEO Theme (the current version supports only bp-lagacy-template) together with the current Version of BuddyPress 4.1.0, and having some serious trouble.

    1. Whenever I try to change the visibility settings of the Name Field on the registration page, it jumps back to the default „everyone“ value (please note the attached GIF). As far as I understand BuddyPress requires this field to always be present and for the value to always be everyone. But why is the line of text and visibility option setting shown beneath the Name Field then? And if the settings are not stored as expected, the user ends up confused.

    2. Similar issue on the user’s profile page. Whenever I try to change the visibility settings of an xProfile (Detail), it looks as if a chosen setting is stored while saving, but the text still says „This field can be seen by: everyone), which confuses the user even further (please note the attached GIF).

    It looks like a BuddyPress related bug to me, because for testing purposes I have deactivated any other plugin that might interfere. My site is still under construction, so unfortunately I cannot proof my claim „live“. Can you please confirm, if these issues exist on other websites as well?

    Thank you in advance for your reply.

    Regards,
    Martin

    field visibility options bug on register page

    field visibility options bug on profile page

    #302418
    jstande
    Participant

    If the following is to redirect Registration from BP to WP, what would redirect from BP to [Peepso_Register] ? And exactly where would I put it?

    (Any reason why nobody has developed options to turn everything on or off in BP since it is so integrated with other themes and plugins?)

    /*disable registration bp */
    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’ );

    add_filter( ‘bp_get_signup_page’, “firmasite_redirect_bp_signup_page”);
    function firmasite_redirect_bp_signup_page($page ){
    return bp_get_root_domain() . ‘/wp-login.php?action=register’;
    }

    Version 4.1.0 BuddyPress
    Version 5.0.3 WordPress

    Home Default

    #302411
    Manu-PB
    Participant

    Hi,
    I’m facing a problem with registration emails, which are not completely translated (into French).
    – buddypress-fr_FR.po and buddypress-fr_FR.mo files are correctly located in Wp-content/languages/plugins,
    – only message title and recipient salutaion are correctly translated,
    – the following message: “Thanks for registering! To complete the activation…” is NOT translated.
    – I have even modified the original message in bp-core-functions.php (to a pure French message) but still the same English message is sent.
    – I cannot find anywhere else where this message is created?
    Thanks for help and regards,
    Manu

    #302383
    eddypiv
    Participant

    When clicking the activation link of the confirmation email, I see the activation link appearing in the url of the browser, and next the home page of the website is shown.
    The status of the new user in Users, Manage Registrations is still “pending”.

    Similarly, when I am in the Settings of Buddypress, Pages, when I view the Activation page, the home page is shown instead.

    How to make the activation work properly?

    #302382
    mrbluesea
    Participant

    you can edit the fields of custom registration in profile fields. Does this help at all?

    #302369
    louisderry
    Participant

    So I recently tested my website registration process after numerous complaints and discovered no one can currently register and login.
    The problem is people are registering fine, they get there activation code fine, click activation link also fine. but then there password is always incorrect when they try login.
    What’s going on

    #302368
    Vijay
    Participant

    Please help me know how to setup a custom registration page which should ask for the below fields(if there is an option to profile photo field mandatory):

    -First and last name
    -Email address
    -Phone number
    -Location (city, state)
    -Profile photo

    Website : https://smartprofin.wpengine.com

    Thanks!!

    #302344
    Julia_B
    Participant

    A lot of member registrations go unactivated on my site because the use mis-types their email address in the registration form.

    It’s a big problem because they think they have registered but they never receive an activation email and I have no way of contacting them to let them know.

    To avoid this I would like to add a required field to the registration form where they have to re-type their email address to confirm it is correct.

    Is there a way to add this please?

    #302328
    tindere
    Participant

    Hi
    I’m trying open a new tab when clicking on our terms of use – Profile extra registration Field. But when I put in the target=”_blank” on the link and saves it is gone after the save.
    The website is this: https://testlearn.blueworkforce.com/register/
    Is there another way to add a _blank to the here link instead of linking to the same window. The user information will be gone else when you go back to the registration page.

    I have found this https://buddypress.org/support/topic/profile-fields-open-url-in-new-tab-_blank/
    But couldn’t get it to work.

    #302294
    powebdesign
    Participant

    Is there any way that you can upload the profile image without having to crop it ? for example a automatically resized or something like that? I lose many users who try to register from the mobile phone just in this step.

    #302281
    jamescushing
    Participant

    Having updated today to WordPress 5.0.3 (and running BuddyPress 4.1.0) textarea fields (e.g. in the registration form) no longer show the TinyMCE editor. This is because with Gutenberg enabled wp_editor() doesn’t work, which is what the textarea field type uses:

    /wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-textarea.php:90-118

    
    /**
    * Filters the arguments passed to <code>wp_editor()</code> in richtext xprofile fields.
    *
    * @since 2.4.0
    *
    * @param array $args {
    *     Array of optional arguments. See <code>wp_editor()</code>.
    *     @type bool $teeny         Whether to use the teeny version of TinyMCE. Default true.	 *     @type bool $media_buttons Whether to show media buttons. Default false.
    *     @type bool $quicktags     Whether to show the quicktags buttons. Default true.
    *     @type int  $textarea_rows Number of rows to display in the editor. Defaults to 1 in the
    *                               'admin' context, and 10 in the 'edit' context.
    * }
    * @param string $context The display context. 'edit' when the markup is intended for the
    *                        profile edit screen, 'admin' when intended for the Profile Fields
    *                        Dashboard panel.
    */
    $editor_args = apply_filters( 'bp_xprofile_field_type_textarea_editor_args', array(
    	'teeny'         => true,
    	'media_buttons' => false,
    	'quicktags'     => true,
    	'textarea_rows' => 10,
    ), 'edit' );
    
    wp_editor(
    	bp_get_the_profile_field_edit_value(),
    	bp_get_the_profile_field_input_name(),
    	$editor_args
    );
    

    The console shows the error “Uncaught ReferenceError: tinymce is not defined” which is apparently located in the tinyMCEPreInit script definition at the foot of the page.

    Any ideas?

    Thanks

Viewing 25 results - 851 through 875 (of 7,641 total)
Skip to toolbar