Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 76 through 100 (of 435 total)
  • Author
    Search Results
  • #275692
    Phoenix
    Participant

    Hello, everyone!
    After I have filled the registration form WP redirects me to the Homepage. In users list (Dashboard) I don’t see new user too.
    Steps which I tried to resolve the problem:
    1) WP in simple mode, not WPMS
    2) Dashboard – Settings – checkbox “Users can register” checked
    3) Disabled all plugins and checked BuddyPress registration function
    4) Changed theme to another one. (I use OneCommunity theme by default)
    5) Installed WP Mail SMTP (tried to send messages via php wp_mail & smtp). Both variants work for WP, also checked to send messages via Contact form 7 etc. BUT not sending any mail from BuddyPress
    6) Tried to reinstall BuddyPress plugin, still not working
    7) There is no hosting problems too…
    8) I don’t see another user accounts in Users dashboard.
    9) Switched between old and new BuddyPress templates…
    10) Additional information:
    – WP version 4.9.8
    – BuddyPress 3.1.0
    – Activated plugins (15): Anti-Spam by CleanTalk, bbPress, BuddyPress, Contact Form 7, No Category Base (WPML), OneCommunity Shortcodes, UpdraftPlus – Backup/Restore, UpdraftPlus – Backup/Restore, Wordfence Security, WP Mail SMTP, WP Sitemap Page, WP-Polls, WPBakery Page Builder, Yoast SEO Premium, WP Recaptcha Integration.
    11) There is no any php errors (when I enable debug) and js errors in browser console.

    I can’t find another reason why didn’t registration form not working…. Domain – barbiusa58.info
    How I can fix it? Thanks in advance)

    #274257
    Venutius
    Moderator

    Have you looked at Auto Group Join? also Registration Groups? These could help you do what you achieve. Auto Group Join includes a handy admin page where you can arrange who is in what group.

    Hiding the Group Activity (Home) page is a bit more involved, but one option could be to simply disable activity?

    #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

    yusareba
    Participant
    #272790
    yusareba
    Participant
    #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?

    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' );
    
    ?>
    #272124
    rastislavkr
    Participant

    Hello @djpaul,
    I tried to create in folder wp-content → plugins the file bp-custom.php with this code:

    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() . '/iump-subscription-plan/'; 
        }
    

    Ensures redirect to my subscription plan (/iump-subscription-plan/). I have a registration after the membership plan has been selected. It looks like it works. Well thank you.

    mcpeanut
    Participant

    @jonleesky hmm, try this

    /*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'; 
        }

    Let me know bud

    mcpeanut
    Participant

    @jonleesky I posted the solution to this nearly two years ago, I have not tested this code recently but you can try it out.

    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-signup.php'; 
        }

    What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the PHP opening and closing tags and save.

    This should disable BuddyPress registration and let you use WordPress registration as default, hope this helps.

    #271455
    ezekielrage
    Participant

    I was able to resolve the problem of no emails being sent after registration by disabling Extended Profiles.
    Trying to resend notifications through Manage Signups still failed though. To work around that I had to disable Account Settings.
    Making both those changes seemed to fix my email problems.

    #270052
    kariellen35
    Participant

    I am still having problems with my user registration and it resides solely with buddypress. I currently have all plugins disabled besides buddypress. I can’t help but wonder if this was caused by the update. Is anyone else having this issue?

    Hi Ozy,

    I’m sorry to hear about the user registration spam…that’s a pain.

    Just a thought…but if you have used 5 major plugins to stop spam, you might want to look at any other plugins that might be interacting/conflicting and disabling the anti-spam capability. For example, one we ran into that disables anti-spam is “New User Approve”…are you using that by chance? (There are some others that accidentally do the same thing.) Or do you have any other plugins that interact with the registration process? If so, try disabling them.

    If you haven’t yet, you may want to try installing WP-SpamShield…it’s got very robust registration anti-spam. If you still have any issues after that, you can submit a support request and we’ll be happy to help you troubleshoot the issue and figure it out.

    – Scott

    #267823
    peter-hamilton
    Participant

    You can disable BP registration, then this is no longer an issue and the profile is still made the usual way.

    I have done it by adding the following code in my functions.php, btw coe is not written by me.

    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' );
    #264877

    In reply to: messages not sending

    oga23
    Participant

    no. but i disabled all bp related plugins, ran all repairs available, activated them back and voila – they are sending. i just left bp coever photo and bp registration options deactivated. i did add translation and some code to sync with woocommerce. but regarding messages all is good now. regarding translations, it still doesn’t get all the strings.
    thank you.

    #261641
    danbp
    Participant

    Hi @kaosone1975,

    add those snippets to bp-custom.php and give a try:

    function bpfr_redirect() {
    
    	if ( bp_is_current_component( 'register' ) ) {
    		wp_redirect( get_option('siteurl') . '/wp-login.php?action=register' );
    	} 
    
    }
    add_filter('get_header','bpfr_redirect', 1 );
    
    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' );
    #261375

    In reply to: Hide Emails Menu

    Alex Stine
    Participant

    Hello,

    For now, I have hid the menu with CSS until I can find a cleaner solution. BuddyPress adds way to many links to the Admin especially considering the fact I don’t need BuddyPress registration features, they are just there and cannot be disabled for whatever reason.

    Thanks for any help. 🙂

    #259824
    bcanr2d2
    Participant

    My install has stopped sending any emails out for new user activation.
    I can receive emails sent by WordPress after a user is manually activated, and can receive any email from Postman SMTP, as these test emails work.

    I don’t use any other activity markers, but emails were not received when messages were sent either.

    I have tried all of the listed troubleshooting steps that others have gone through before.

    I have a custom function that creates a post for the user during the registration process. I have removed all custom functions and tried registering a user, and it still will not send any emails.

    As BuddyPress uses it’s own PHP Mailer, I am not able to log them via any WP Mail logging tools, and want to see what might be going on here.
    The problem reared its head around the time I upgraded to 2.6 (although the custom function during registration was also added at this time) as well

    I have reset the emails multiple times, and I have not made any changes to them.

    Could someone please provide assistance, or given me a suggestion on how to run the BP Email Debug code to get an email of any issues

    Host is Bluehost

    Here is my install, and plugin list

    WordPress 4.5.4
    BuddyPress 2.6.2
    Advanced Custom Fields 4.4.10
    Akismet 3.1.11 (inactive)
    BackWPuP 3.3.4
    BP Force Profile Photo 1.0.5
    BP Member Type Manager 1.0.1 (inactive)
    BP xProfile Location 1.2
    BP XProfile WordPress User Sync 0.6.4
    Broken Link Checker 1.11.2
    Buddy Progress Bar 1.0.2
    BuddyPress Conditional Field Groups 0.1.0
    Buddypress Conditional Profile Field 2.0
    Buddypress Geodirectory Integration 1.0.0 (inactive)
    BuddyPress Member Type Generator 1.0.2
    BuddyPress Profile Tabs 1.6.1
    BuddyPress Security Check 2.1.2
    BuddyPress Simple Terms And Conditions 1.3
    BuddyPress Xprofile Custom Fields Type 2.5
    BuddyPress Xprofile Member Type Field 1.0.4
    Cherry Parallax Plugin 1.0.0 (for my theme)
    Cherry Plugin 1.2.8.1 (for my theme)
    Conditional Profile Fields for BuddyPress 1.1.9
    Contact Form 7 4.5
    Contact Form 7 – Dynamic Text Extension 2.0.1
    Custom Hooks 1.0 (All my custom functions are in this plugin)
    Custom Login 3.2.5
    Custom Post Template By Templatic 1.0
    Custom Post Type UI 1.4.1
    Disable Comments 1.5.2
    Display Posts Shortcode 2.7.0
    Easy Parallax Slider 2.1.1
    FacetWP 2.6.4
    GEO my WP 2.6.6.1
    GeoDirectory 1.6.5 (inactive)
    Hello Dolly .1.6 (inactive)
    MOJO Marketplace 1.0.1 (inactive)
    MotoPress Content Editor Lite 1.6.5 (inactive)
    Quick and Easy FAQs 1.0.3
    SuitePlugins – Advanced XProfile Fields for BuddyPress 1.0.3
    Super Socializer 7.8.1
    WP Private Content Plus 1.11
    WPFront User Role Editor 2.12.4
    Yoast SEO 3.5

    #259005
    djsteveb
    Participant

    @phound1

    have you tried to see if bp emails work when the other plugins are disabled?

    maybe some of things we posted about in the forums long ago may offer some clues as to where the hiccup is. I stiff refer to https://buddypress.org/support/topic/not-receiving-notification-of-new-user-registration/ on occasion.

    #258009
    danbp
    Participant

    Try this (goes to bp-custom.php )

    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' ); 
    function my_redirect_signup_page(){
    	//return wp_registration_url(); 
    	return bp_get_root_domain() . '/wp-signup.php';
    }
    add_filter( 'bp_get_signup_page', 'my_redirect_signup_page' ); 
    #257707

    In reply to: Redirect does not work

    Paul Wong-Gibbs
    Keymaster

    Welcome Pack! Small world.

    Can you try disabling Welcome Pack? That certainly interferes with user registration.
    Please also try disabling iThemes Security.

    Then, test registration again, and see what happens.

    If it still doesn’t work as expected, if you can switch your theme to one of the default WordPress themes (leaving those two plugins disabled), test again. If you have a test environment (say you might be using Pantheon hosting, for example), this should be easy to do, though if it’s only one server, I appreciate you might not want to modify your production site too much.

    #255638

    In reply to: Confirmation Email

    David Cavins
    Keymaster

    I’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.

    <?php 
    add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) );
    add_filter( 'bp_registration_needs_activation', '__return_false' );
    add_filter( 'bp_core_signup_send_activation_key', '__return_false' );
    
    function disable_validation_of_new_users( $user_id ) {
    
    	// Get the user's activation key for BP. This is the activation_key in user_meta, not the key in the user table.
    	$user_key = get_user_meta( $user_id, 'activation_key', TRUE );
    
    	// Activate the signup
    	$awuser = apply_filters( 'bp_core_activate_account', bp_core_activate_signup( $user_key ) );
    
    	// Automatically log the user in.
    	// Thanks to Justin Klein's  wp-fb-autoconnect plugin for the basic code to login automatically
    	$user_info = get_userdata($user_id);
    	wp_set_auth_cookie($user_id);
    
    	do_action( 'wp_signon', $user_info->user_login );
    
    	bp_core_add_message( __( 'Your account is now active!', 'my-plugin-slug' ) );
    
    	buddypress()->activation_complete = true;
    }
    #254532
    jasonegli
    Participant

    Hello, thanks for the advice. I installed the plugin, but unfortunately it still doesn’t appear to be sending registration emails. I noticed that the plugin mentioned above will be automatically disabled on BuddyPress 2.5.3 and higher because the functionality is already built-in.

    GDU
    Participant

    Hi all

    So I’ve been doing some further trouble shooting on this one and it’s just… odd.

    The issue doesn’t seem to be with just buddypress in isolation. It appears to be related to (whatever happens or changes) when buddypress and bbpress are activated at the same time.

    So, I created a brand new install of WordPress and installed WP job manager

    Within WP job manager I have the “allow account creation’ setting enabled when submitting a job listing

    With buddy press installed and enabled by itself I can enter and preview a new job listing without any issues.

    With bbpress installed and enabled (and buddypress disabled) I can enter and preview a new job listing without any issues.

    With buddypress + bbpress enabled at the same time, previewing a job posting takes me to a 404 page not found error message

    The interesting thing is.

    If I leave Buddypress and bbpress enabled but I disable “allow account creation” when submitting a new job listing in WP job manager. The job preview step works just fine.

    So I guess from I’ve been able to ascertain that it is the WP job manager account creation step which is conflicting with ‘something’ that changes on the back end when both buddypress and bbpress are enabled at the same time.

    I have no idea what might change on the backend when bbpress and buddypress are enabled from an account registration perspective so at this point I’m stumped.

    Does anyone have any ideas where I might be able to look next?

    Thanks

    Mark

    #253998
    r-a-y
    Keymaster

    I also tested BP 2.5.3 on WP 4.5.2 on a fresh install and cannot duplicate your problem, Earl_D.

    I tested with the Extended Profiles component enabled.

    Are you using any caching plugins? If so, try to disable it or whitelist the register and activate pages from caching.

    Do you have any special extended profile registration fields? If so, can you list what they are and how they are configured?

Viewing 25 results - 76 through 100 (of 435 total)
Skip to toolbar