Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'registration'

Viewing 25 results - 501 through 525 (of 7,641 total)
  • Author
    Search Results
  • #313862
    Rajyaseva Academy
    Participant

    my Website : http://www.rajyaseva.com

    i have registration link in menu which leads to http://www.rajyaseva.com/register/

    the page opens very properly but afte user fills up the form and clicks on register butten.

    the massage popps up saying there has been critical error on your website.

    buddypress version 6.3.0

    Note that user gets registered on website but the extendend profile fields that he filled up while registering are not recorded and they apear blank upon login.

    #313861
    Rajyaseva Academy
    Participant

    my Website : http://www.rajyaseva.com

    i have registration link in menu

    the page opens very properly but afte user fills up the form and clicks on register butten.

    the massage popps up saying there has been critical error on your website.

    #313846
    iamthewebb
    Participant

    Hi @robbcapp, if you are logged in you can’t view the registration page, try and open it in a different browser or a private window where you are not logged in.


    @michelleraab
    are you experiencing the same issue as robbcapp?

    michelleraab
    Participant

    Hi,
    I’m trying to set up Buddypress for one of the websites that I run. The registration page and activation page won’t load. From the admin interface in the settings from the Buddypress section –> pages, I have set up the registration page to be “register”. The page works if I look at it from the pages section, but won’t load from the settings/Buddypress/pages. If that makes sense. In the settings/general, I do have the “anyone can register” checked.

    Why is this not working? Please help.

    agizzie
    Participant

    latest WP & BP using Community Builder theme…
    I’m trying to set 2 differetn menus. first is for logged out users, basically registration page with login button. And once logged in >full menu. I’ve set up both menus via dashboard.

    Here’s what code I have tried in functions.php:

    // Conditional Nav Menu
    
    function wpc_wp_nav_menu_args( $args = '' ) {
    if( is_user_logged_in() ) { 
        $args['menu'] = 'logged-in';
    } else { 
        $args['menu'] = 'logged-out';
    } 
        return $args;
    }
    add_filter( 'wp_nav_menu_args', 'wpc_wp_nav_menu_args' );

    Above works however, it changes all menus I’m looking for just top/main nav

    // Conditional Nav Menu
    
    function wpc_wp_nav_menu_args( $args = '' ) {
    if( is_user_logged_in()) { 
      	if( 'top-navigation' == $args['theme_location'] ) { // Change top-navigation to theme specific name
    	    $args['menu'] = 'logged-in';
    	}
    } else { 
    	if( 'top-navigation' == $args['theme_location'] ) { // Change top-navigation to theme specific name
    	    $args['menu'] = 'logged-out';
    	}
    } 
        return $args;
    }
    add_filter( 'wp_nav_menu_args', 'wpc_wp_nav_menu_args' );

    Above does nothing. I can’t find what my theme calls the main nav to check if using top-navigation.

    Any ideas??

    matteocinti90
    Participant

    Hey Everyone,

    I am customising my BP profile page and added the mediapress plugin.
    Is there a way to automatically create an empty image gallery for a user upon registration and say name it ‘@username’-gallery? And is it possible to limit the available galleries per user to 1 (so they can’t create any new one?).

    Thanks for help all.

    #313672
    jabbaz
    Participant

    Hello, i want to setup a website where users can register as normal users (normal registraion: mail and password) or PRO users (so they can insert various fields). Is there a way to setup two different registration forms, one that asks only mail/pass and one that asks all the required fields?
    Or, is possible to have all registered only with mail/password and then, only to the users that i enable can fill all the PRO users fields?
    Thanks!

    SilverSunrise
    Participant

    Dear Forum Members,

    I am trying to customize the standard buddypress activation email that is sent upon registration of a new user (I am using latest WordPress and Buddypress Versions).

    After following the suggestions on https://websistent.com/custom-buddypress-activation-email/, I did manage to edit the subject line with following snippet in wp-content/plugins/bp-custom.php:

    add_filter( 'bp_core_signup_send_validation_email_subject', 'custom_buddypress_activation_subject', 10, 2 );
     
    function custom_buddypress_activation_subject( $subject, $user_id ) {
        $user = get_userdata( $user_id );
        return $user->user_login . ' – Activate your ' . get_bloginfo( 'name' ) . ' account';
    }

    This works fine.

    However, the following snippet for customizing the message of the email does not work:

    add_filter( 'bp_core_signup_send_validation_email_message', 'custom_buddypress_activation_message', 10, 3 );
     
    function custom_buddypress_activation_message( $message, $user_id, $activate_url ) {
        $user = get_userdata( $user_id );
        return "Hi $user->user_login,
    Thanks for registering! To complete the activation of your account please click the following link:
    $activate_url
    Thanks,
    Jesin";
    }

    I have tried the approach, as outlined here https://buddypress.org/support/topic/customizing-buddypress-activation-emails-outside-and-still-get-activation-key/, too. It did not work neither.

    I am not sure whether this hook (bp_core_signup_send_validation_email_message) is still working or if there is a better way to hook into this message.

    Could anybody shed some light on this issue and help me with customizing the activation email content while still prodiving activation link and activation key?

    Thanks a lot and kind regards
    Joachim

    #313482
    yaesew
    Participant

    I found the fields in the table and could the delete them. Awesome! Thanks.
    Havr to test the registration process now….but it seems to work.

    #313473
    iamthewebb
    Participant

    Hi, This looks like a theme issue, have you tried one of the default themes such as twenty twenty to see if the additional fields still appear or the registration button is there.

    #313471
    yaesew
    Participant

    I have the following issues since the last update:

    First things first, thats the website I am talking about: https://www.blueskies.rocks/

    On the top right was the registration button. It just disappeared and the “or” is the login button now. Why is that, how can I get the “Registration” button back? Its more a link then a button.

    Secondly the registration form got enhanced by several fields! The Username field got duplicated several times and I am not able to delete them in wordpress backend. How can I remove them? Please help. Thanks

    bruceleebee
    Participant

    I installed WordPress on my root domain. For example: http://www.mysite.com

    And then I installed the BuddyPress plugin.

    But all the BuddyPress URLs now have a “buddypress” slug. For example: http://www.mysite.com/buddypress/registration

    What I want is BuddyPress running on the root without the slug. For example: http://www.mysite.com/registration

    How do I do that?

    moralesgoyo
    Participant

    Hi Samikip!

    Just came across your post searching in Google for a similar issue, although I am still in the previous step. I wonder if you found a solution for your issue, since I can´t see any replies in this forum.

    I created a site for a customer with a buddypress install and a membership plugin. After done, they requested to create an intranet (which we did in a subdomain) using Woffice (an intranet theme that comes with a personalized in style BuddyPress). The intranet was to be offered say to “PREMIUM” members.

    The “problem” we are facing now, is that when users register in the corporate site (which they do via the membership registration form, which has an extension and creates their buddypress profile) they need to be registered again in the Intranet and create a new profile.

    What we are doing for now to solve this, we are only using the intranet Buddypress to avoid duplications (unconnected profiles).

    Could you please show some light on how to connect both databases? When creating the subdomain for the intranet we set it up to share databases (just changing the prefix) but we are pretty lost on how to proceed at this point.

    Thanks a lot for any help!

    #313335
    iamthewebb
    Participant

    Hi, as you state this is a premium theme that incorporates two plugins you will need to contact the theme author for support relating to their integration or test with a standard theme such as twenty twenty.
    https://www.paidmembershipspro.com/add-ons/buddypress-integration/ has information on the settings you will need for overriding BP registration pages.

    #313333
    #313332
    brayte
    Participant

    I am looking to modify the registration so that no need for the email. we will only ask for Username and password. I am using WordPress and a plugin called ultimate membership pro to manage membership. this plugin is responsible for the registration page. Could anyone here help with this?

    #313326
    WordpressIsGreat
    Participant

    that double opt in column is not part of buddypress.

    I thought the activation is part of WooCommerce and BuddyPress gives me the oportunity to manually activate accounts even if I haven’t the activation link that is send with the registration email.

    relating to newletters or similar

    The column is definitely for user activation I’ve set the value via phpMyAdmin from waiting to activated and it activates the user.

    #313324
    davidferris2
    Participant

    Can anyone help? I’m building a BuddyPress-centric website (www.cityoflondonist.org.uk) and need help building it. More details below.

    Thanks in advance

    David

    * Help me build a specialized online community in WordPress environment
    * Provide advice and trouble-shooting support
    * Consultant should have extensive experience with BuddyPress community plugin and bbPress forum plugins
    * Consultant must be independent, and do the work themselves. Ie, he/she should not engage others in the work

    Specific examples are:
    * Advise on the pros and cons of using BuddyPress to accommodate custom metadata, vs Gravity Forms-based registration
    * If using BuddyPress membership software, advise on whether third party plugins should be used to augment its capabilities and if so, which plugins
    * Solve plugin conflicts
    * Help add custom metadata to registration process
    * Explain difference between WPBakery and Gutenberg editors
    * Help set up collaborative forums
    * Help implement access permissions to sensitive discussions
    * Advise on where to implement specialized popup forms, and how to implement

    #313320

    Topic: Enable Buttons

    in group forum Requests & Feedback
    Achille
    Participant

    Hello Team!
    I would like to activate the buttons (like – share – private message – public message) on each profile without being logged in and when the user wants to write he will be redirected to the registration or login page. From Forums: #post-16015 http://prntscr.com/twzgtd

    sharkkid
    Participant

    I am currently working on this social website using buddypress http://www.nigeriachemists.com and i experimented something, now the registration page with account and profile details is not showing, instead one ugly page is showing in register, can someone please kindly help here? i need to grt it back to default

    #313240
    cl0ne
    Participant

    Unfortunately, I was not.

    The membership plugin I was using eventually did an update that allow for syncing to occur automatically after registration.

    Hope you find a solution!

    eduardof
    Participant

    I need to add a default value in some extended profile fields in buddypress registration form so this data is not repeated.

    I have seen that I have to use the variable xprofile_set_field_data() but I don’t know exactly in which .php file to implement it and what code to put

    #313189
    brucecy92
    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

    #313175
    honoluluman
    Participant

    Hello 🙂

    I am trying to set up my website that makes use of BP with W3TC and i also run WPML. I get this problem,, when i use object cache from W3TC in the /members/ page, i can see the members in one version of language but not in the other. If i disable object cache then i don’t get this issue. (the same for registration page)

    For BP i only use very basic components, see image https://ibb.co/Q9Jxzj4

    Any ideas would be appreciated.

    #313118
    mungbean
    Participant

    Hi there,

    I want to create community where each group is restricted by email domain. Is there any way to automate the process for when a user registers for the community, they will become a member of the group that is assigned to their email domain?

    Also, it’s possible a member could have multiple email domains hence eligible for membership to multiple groups, is it possible to allow users to register with one email (primary email/group) and after registration add additional emails to join other groups, via their user account?

    Thanks!

Viewing 25 results - 501 through 525 (of 7,641 total)
Skip to toolbar