Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 376 through 400 (of 7,641 total)
  • Author
    Search Results
  • #319646
    #319613
    matiut
    Participant

    Hello.
    I`m new user of BuddyPress, and I would like to know if it is possible to create differents registration pages, and depends on which page is, the new user automatically join to an specific group.
    thanks in advance.

    Mathieu Viet
    Moderator

    I’m bit amazed by this

    enabled direct registration of new members and disabled email confirmation

    As far as I know, a user registering from the front-end (managed by BuddyPress) is first receiving an email containing a secret key he needs to paste into the BuddyPress activate page to validate their account. But maybe you are using a plugin or some custom code to disable this..

    Otherwise, you can achieve what you describe adding the following code snippets to a bp-custom.php file.

    
    /**
     * Adds activities generated when a user activates their account when a user
     * is created using the wp-admin/user-new screen Add new action.
     */
    function automatically_generate_an_activation_activity( $user_id = 0 ) {
    	// Adds a "became a registered user" activity.
    	bp_core_new_user_activity( $user_id );
    
    	// Fake a user log in.
    	bp_update_user_last_activity( $user_id );
    }
    add_action( 'edit_user_created_user', 'automatically_generate_an_activation_activity' );
    
    caioscarvalho
    Participant

    Hi!

    I enabled direct registration of new members and disabled email confirmation.

    Everything works fine on the buddypress registration page

    But when I register a new user through the worpress panel >> Users >> new user, it activates as a member but not in activities

    Does anyone know a way to definitely activate these users registered on the panel without sending an email and having to do the first login?

    Use WP 5.7 and BP 8.0

    #319541

    In reply to: BuddyPress 8.0.0

    b4ureye
    Participant

    Hi @imath,

    I tried to download Buddypresse again and I installed but nothing works the error is still displayed on the registration page! I am not a developer but I tried to see the path public_html / backoffice / wp-content / plugins / buddypress / bp-templates / bp-legacy / buddypress / members

    But until now I do not know what to replace please, please help me correct the error thank you

    #319531
    rohanmishra92
    Participant

    Not actually tried but you can try using buddypress registration forms with gravity forms in WordPress. What you have asked for must be possible but using some typical group of code. I have tried this on Weebly but not sure about this. However one can do this after understanding the basic difference between WordPress and Weebly platforms.

    See Here: https://askanydifference.com/difference-between-weebly-and-wordpress/

    wbcomdesigns
    Participant

    @ibanez78200 first approach could be using member type and mapping it to member roles and display profile fields based on member type.
    2nd approach, you can use https://www.gravityforms.com/add-ons/user-registration/ to create multiple forms and map each registration with different membership roles. It also allows mapping xprofile fields with form fields.

    ibanez78200
    Participant

    Hello all,

    I speak no very well english. I hope to you will understand me.

    My current WP configuration:
    Theme used: buddyX
    plugins: buddypress, BPprofilsearch, Youzify, BuddyPress Xprofile custom field types,

    I want to make a paid registration module with several price levels offering different possibilities.

    I would like to add 3 types of profile. 1/ man member profile , 2/ girl member profile and 3/ profile for people who consult members’ files (visitors). I want the choice of profile type to give a different registration form page.

    The informations in the cells to be completed in the registration form is transferred to the profile area of ​​each member’s file in buddypress.

    The plugins ” WP profile search” allows to filter on the member directory page.
    The different filter possibilities are direct transfers of the cells to fill in the registration form.

    Do you know how to create this type of registration has 3 profil, therefore offering 3 different registration forms, and keeping the operating principle of buddy press knowing that the type of profile must also be in the sorting of WP profile search ?

    Thank you by advance !

    #319395
    rossellam
    Participant

    Just solved using WP registration because no way to use register page

    I added bp-custom.php in /wp-content/plugins

    this is code:

    /**
    * 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' );
    
    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';
    }
    #319361
    thedjwilly
    Participant

    Hi Urgent, I need to change the record labels.

    Where says; Username (required)

    to

    User to access

    and thus change the other label

    vitoanthony80
    Participant

    Good morning.

    As you can read in the title I am trying to create a website for the first time with the use of the buddypress plugin.
    My intent is not just to use it as a social network but to be able to take advantage of some social functions.

    In practice I would like to allow the user to:
    1) register by filling out the registration form;
    2) registered users will appear in a single map. It will be possible for a registered (or unregistered) user to check other already registered users who are close to his / her geographical position.
    3) only the registered user will be able to see the content of the site;
    4) the administrator will be able to publish a news that will be notified automatically to all users in their profile and via email.

    So there will be no active participation of users in creating posts, groups or sending messages between them.

    For point 2 I used a plugin that allows you to automatically enter the user’s address during registration and to be able to search for the user.

    for point 3 I have installed some plugins but they do not limit the page assignment to registered users only.

    Point 4 I did not understand at all if it is possible to do.

    Finally I would like the wordpress bar not to appear at the top and horizontally (I figured out how to remove it for the administrator but not also for registered users).

    Could you give me some directions.

    Thank you

    #319274
    pdj1988
    Participant

    Good day,

    I hope you all are doing well?

    One of my client’s Buddypress based sites’ has been running smoothly for a couple of months now. As of this morning, we’ve run into a problem.

    Background:
    The site is blocked to users who aren’t members, so they are redirected to the login page. For this, I’m using the Force Login plugin. We have built custom login and password reset pages with Elementor and the Registration page is built with Elementor on Buddybuilder.

    I have removed all custom code in the functions.php file except the following, which specifies the custom redirect slug:

    ‘// Custom Login URL*********************************************************
    function my_login_page( $login_url, $redirect ) {

    return site_url( ‘/login/?redirect_to=’ . $redirect );
    }

    add_filter( ‘login_url’, ‘my_login_page’, 10, 2 );’

    When a user now enters the site URL, they are met with the following message:

    ERR_TOO_MANY_REDIRECTS

    Anyone have advice to rectify this?

    Regards
    Pierre

    #319262
    lejumgames
    Participant

    I have a website with BP, Sensei and Paid Membership.
    But when I click to open the profile instead of opening the “site.com/members/user” or “site.com/members/user/profile” link it goes to the Association page.

    In fact, any page I set as Members in BF>Pages>Directory always goes to that Association/registration page.

    Can someone help me?
    Thank you very much!

    #319211

    Topic: Avatar Selection

    in group forum Installing BuddyPress
    faisal74
    Participant

    Hello, I am looking for an avatar in the registration form. I need some avatar samples that are already added on the signup page the user just selects the avatar which is showing on the page he/she can’t upload any avatar from our PC.

    #319112
    mrrejis
    Participant

    Is there a way for me to create a custom registration page where a WP Form is used to capture a new user registration to my website?

    paucompany
    Participant

    Hi:
    Good afternoon. I have BuddyPress version 7.3.0 installed and I observe that on mobile devices, the access and registration options are not displayed (unless you put the smartphone in a horizontal position), assuming this is a big problem since users , nor can they access or register, as they do not see the option). I would like to know if you can help me resolve this issue. I also observe that it is very prone to attempted login attacks such as brita force, Ddos, XLS, etc, as it cannot change the registration path, not even installing the well-known Hide login plugin, as it is not compatible with BuddyPress. BuddyPress redirects by default to wp-login.php and if I install the aforementioned plugin to change the rita, when trying to register, and not finding it, it obviously gives me a 404 error. It would be interesting if they made BuddyPress compatible with hide login. Meanwhile, can you offer me a solution for the change of route?

    Waiting for your response, attentively:
    Pau Company

    #319006
    rossellam
    Participant

    Hello, suddenly
    when users click on Registration they are redirect to

    https://mysite/wp-login.php?redirect_to=https%3A%2F%2mysite%2Fregister%2F&reauth=1

    I’ve tried to disable all plugins but it didn’t work. The only one change today, I’ve updated BP Better Messages.

    Any idea what should I do?

    Thank you for support

    #318974
    Earl_D
    Participant

    Since updating I had two major issues. First registration page stopped working. It reloads and never submits. Also when using the view button in the page assignment it doesn’t find the page. I have re-saved permalinks several times created a new page and everything else that I have read to fix the issue but still doesn’t work.

    Also the user avatars on WP side stopped working only BP avatars work.
    Thanks for any help in advance.

    Using BP xprofile for extended fields

    b4ureye
    Participant

    Hello,

    I would like to prohibit the creation of an account to users! I would not like users to use space characters in the wordpress registration field using Buddypress! Thank you I give me a code and tell me in which file should I put the code. Thank you

    #318913

    In reply to: BuddyPress 8.0.0-beta2

    roman1wp
    Participant

    Please add the ability to put your answers to my posts, click on the button (like), so that (and other users) can see the notification “Someone liked your post.” I also have one question.
    1. I cannot complete user registration if I fill in the Name field in Russian (Пользователь). If I write the username in English (User) then everything works fine. https://prnt.sc/13bx92f
    The support of the Russian language is important to me for my work. I continue testing BuddyPress. I like it, I think I will learn how to work with your plugin, you just need to understand some subtleties.

    doywil
    Participant

    I have two questions:

    1 Is it possible to redirect registration to the root blog of WP multisite? (BuddyPress is network active and root blog is in the main site of the WP installation.)

    2 Is it possible to disable BuddyPress on one site (blog) in the network?

    #318641
    wbcomdesigns
    Participant
    pavisdaniel1903
    Participant

    how to able users to open and reply to topics without registration

    #318593

    Topic: Buddypress Bug

    in group forum Installing BuddyPress
    Corporativesupport
    Participant

    Buddypress has one option for the register page. This option allows to select only one page for registration; however, with the Paid Membership Pro and the Event Manager Pro registration is guided by Buddypress. When selecting the Paid Membership Pro registration page under the Buddypress pages, the Event Manager Pro does not work.

    Please help to have to registration options for the Buddypress so one would work for the Paid Membership Pro and the other registration option works with the Event Manager Pro.

    Please advise.

    Thanks,

    Silvia

Viewing 25 results - 376 through 400 (of 7,641 total)
Skip to toolbar