Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'disable registration'

Viewing 25 results - 26 through 50 (of 463 total)
  • Author
    Search Results
  • vtuncheff
    Participant

    Hi all,

    Can anyone tell me how I go about disabling the auto generation of the strong password on the registration form?

    The users of my site are not very tech savvy and they tend to register without taking note of the password then have to reset it.

    I get daily complaints…

    The password strength notices are fine so that isn’t a problem.

    Many thanks in advance!
    Vtuncheff

    #323174
    eshafer15
    Participant

    Hi,

    I’m fairly new to WP and BP. I’m trying to help a non-profit with their WordPress site and the Registration page just spins. I’ve added define( ‘WP_DEBUG_LOG’, true ); to the wp-config.php file but I don’t get any errors logged….just the page spinning. I’ve pulled a copy to my LocalWP and disabled all plug-ins, etc but can’t find the issue. I would love any pointers or help!
    Please be patient with me as my expertise is limited. I realize these are older plugins, etc. This was working and then stopped but not sure why. I will start slowing updating everything to get it current once I figure out how to get the site back functional.

    To get to the registration page go to: About – scroll down and select ‘Become a Member’ – ‘Create an Account’

    BP Settings Options – Profile Syncing enabled
    BP Pages – Register set to Register
    website: https://fellowcoaches.com/
    WP version: 5.6.7
    BP version: 3.2.5
    Theme: Twenty Twenty-One v1.3

    #322459
    windhillruss
    Participant

    Hi, Thanks for the opportunity to test v10. When the Option for Admin to approve requests is active and ‘Allow anyone to Register’ is disabled, the Registration form says ‘Member Registration is currently not allowed’ Using the Beehive Theme which styles Buddypress. Similarly, Beehive’s Ajax Login Modal says ‘Sign-Up not allowed’ It appears like a Catch22 situation. Is there something I’m missing? Thanks.

    #322059
    joydipkar73
    Participant

    I am using WordPres version 5.8 and Buddypress 9.1.1.
    I am using AMP from the Google plugin. I have disabled AMP from pages and only posts are using AMP.
    This setting corrected the problems in the registration form.
    But, the profile page where people would upload the image is broken. it is showing AMP “form has been submitted… ” error and the crop section is also broken.
    I have tried manually disabling AMP in the members and activity page. But nothing is working at all.
    Please advice.

    #321018
    xrelmate1
    Participant

    WordPress version: 5.8.1
    BuddyPress version: 9.1.1
    link to your site: https://e-seeker.com/
    Hi,
    E-Seeker, allows users to register accounts and create their website, as part of a multisite environment.
    The problem occurs after registration, where the user is added on the main site as well, as seen in the print screen:
    https://prntscr.com/1s5dubh

    I also added this code to manage to prevent the user to have access to the main site:
    https://prntscr.com/1s5anwd

    When I disable BuddyPress, and sign up a new user on https://e-seeker.com/wp-signup.php, I have a smooth registration, without the user added to my main site;
    https://prntscr.com/1s5e8tw

    I would appreciate any helpon this matter, so that a user could register an account or a website without be added and have access to my main site.

    piperpeninfo
    Participant

    Hello everyone,
    I came across related discussions about this topic but didn’t find a real solution.

    I have a Multisite and I have Buddypres installed on my main site, which resposnsible to send a welocme emails and handling the users.

    The problem is that after new user registration – the user gets 2 welcome emails:
    1- is styled sent from Buddypress
    2 – unstyled default wordpress “Welcome User Email”

    I want to disable the default welcome email but only for the user (I still want to get notified about new users)

    Please don’t point me to install a plugin or link for irrelevant solutions (like I saw on other related discussions).

    Maybe it’s not Buddypress specific issue but i hoped someone can help with that, I need your help guys….

    cassel
    Participant

    I found out that the registration page for BuddyPress, when set in the dashboard overtook the page I had customized. To avoid that, I gave it is own page, so that my “normal” login was the customized one.
    However, I notice that the Buddypress registration is letting a lot of spam registrations in, since it is not using captcha. Is there a way to disable it completely so I can just keep my own page the way I set it up?

    tanyajaynep
    Participant

    When I go to BuddyPress Pages in settings I get this –

    “Registration is currently disabled. Before associating a page is allowed, please enable registration by selecting either the “User accounts may be registered” or “Both sites and user accounts can be registered” option on this page.”

    So I go to the Network Settings and have allowed user registrations & saved. Refresh the page and it says that user registrations are allowed.

    But if I go back to the BuddyPress settings I still get the message (above) that I need to allow registrations!

    Help!

    #319740
    doctrpnyc
    Participant

    hello i am using beehive buddypress theme. after i updated to buddypress 8.0.0, my registration page does not load, the preloader will be displayed indefinitely. i tried deactivating all the plugins, but the issue persists. But if i disable the theme and activate twenty twelve theme, the registration page load up. How can i resolve this issue. Please help. ITS AN EMERGENCY

    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

    #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';
    }
    #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

    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?

    #318161
    eddie
    Participant

    Good afternoon!
    With some of the updates, there was a problem with the registration page on the site.
    1. In the BuddyPress settings, the page I created for registration is selected in the “Pages” section. Everything used to work.
    2. There are plugins in collaboration with BuddyPress – BP Disable Activation Reloaded and Youzer. But when I deactivate them, the problem doesn’t go away. But when I deactivate BuddyPress, the problem with redirects disappears.
    3. Urls for site pages without “/”, i.e. site.com/post-name

    BuddyPress 7.3.0

    #318036
    epgb101
    Participant

    Hello
    When I install that plugin (https://wordpress.org/plugins/lock-my-bp/) it works perfectly – except now, my existing buddypress registration and login (with custom signup questions) is now replaced by what looks like standard WP Login/Register fields.

    Q: how can I disable keep my original Login/Register signup page/fields?
    (I cannot see any shortcodes in my exiating BuddyPress register page to enter in lock-my-bp ‘Custom Form’ field – it’s blank)

    The page I need help with: https://www.101christianchat.com/members/

    #317398
    Varun Dubey
    Participant
    gorvie
    Participant

    After installing BuddyPress, My registration page is now under buddypress, Even the password field is missing so people cant even sign up.

    I want it to be my original themes registration page.

    Ive done a bunch of research and none of the codes seemed to have worked for me.

    Any Idea How to remove buddypress reg page?

    ppp12345
    Participant

    I’m happy with the profile part of the registration form, however the account setup in Nouveau is a different story. How can I disable only the account part, any ideas?

    #315824
    craigburdett
    Participant

    I created a fresh install of WordPress, removed all themes except TwentyTwenty and all default plugins. Installed Buddypress from the WP repository. Activated. This is a fresh install set up to troubleshoot this Buddypress problem in another install.

    I can add users in the backend. If BP is disabled, users can register using the default registration.

    No WP errors are created or logged. A single proxy error is thrown. Noted below with real domain masked.

    Any suggestions?

    ********************

    1. Which version of WordPress are you running?
    Wordpress 5.5.3

    2. Did you install WordPress as a directory or subdomain install?
    Subdirectory

    3. If a directory install, is it in root or in a subdirectory?
    subdirectory

    4. Did you upgrade from a previous version of WordPress? If so, from which version?
    Fresh installation

    5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
    yes

    6. Which version of BP are you running?
    Version 6.4.0

    7. Did you upgraded from a previous version of BP? If so, from which version?
    No. Fresh install

    8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
    None

    9. Are you using a standard WordPress theme or customized theme?
    No

    10. Which theme do you use ?
    Twenty-twenty

    11. Have you modified the core files in any way?
    No

    12. Do you have any custom functions in bp-custom.php?
    No

    13. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
    None

    14. Please provide a list of any errors in your server’s log files. https://codex.wordpress.org/Debugging_in_WordPress
    One error noted in proxy_error_log
    2020/12/01 13:37:19 [error] 31520#0: *5156884 “/var/www/vhosts/DOMAIN.com/httpdocs/testing2/register/index.html” is not found (2: No such file or directory), client: 143.244.45.55, server: DOMAIN.com, request: “POST /testing2/register/ HTTP/2.0”, host: “DOMAIN.com”, referrer: “https://DOMAIN.com/testing2/register/”

    All debug options enabled in wpconfig but WP throws no errors or creates a log file.

    15. Which company provides your hosting?
    1and1 dedicated server

    16. Is your server running Windows, or if Linux; Apache, nginx or something else?
    Apache & nginx

    17. Which BP Theme are you using?
    None additional

    18. Have you overloaded any BuddyPress template files.
    Touched none

    19. Any other site customisations that might have a bearing on the issue?
    Fresh install

    20. What BP Template Pack is activated in your installation? You will see that under Dashboard > Settings > BuddyPress – Options page.
    Buddypress Nouveau (but also tried with Buddypress Legacy)

    #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.

    iamthewebb
    Participant

    Ahh the site is using the Legacy Template pack, this doesn’t happen with Nouveau template. You can switch between templates on the options page within buddypress settings.
    Unfortunately I’m unfamiliar with this but https://buddypress.org/support/topic/how-to-disable-stay-on-page-confirmation-popup-from-registration-page/ has a possible solution.

    #311915
    twmcmahan
    Participant

    I have over 4000 active users on Buddypress – and it’s a Spam Magnet.

    I’ve tried a few things I’ve found in past threads, but doesn’t seem to be working. Registrations are e-mail verified, and coming from gmail for the most part. The Spam users don’t seem to have the same IP range to ban, etc.

    First people were just creating profiles. Then they started using the messages system. Disabled that. Then they started sending Friend requests to other users. Then they started replying to other users basic activity.

    I’ve tried throttling, they just make more accounts. I’ve tried ReCaptcha on every messaging form. A week later someone still manages to reply to activity to a few hundred users in a day.

    I’ve essentially disabled every single interaction possibility at this point, which severely hobbles the usefulness of buddypress in the first place.

    Any ideas for something that actually works to stop spam?

    #311609
    balebond
    Participant

    Running WordPress 5.4.1. and Buddypress 5.2. Users can’t register. With all other plugins off and using 2019 or 2020 themes, the front-end registration is still not working. The page does a quick refresh but no confirmation message, nothing recorded in database and no emails are sent. Not sure when this stopped working but had been on auto-pilot for at least a year with various plugins and Socialize theme by Ghostpool/Envato. User registration from the admin panel does work. With Buddypress also disabled saw that WordPress user registrations would work. https://godhelp.net/register/

    Any ideas?

    #311039
    Varun Dubey
    Participant

    @easytomake You can try to disable BuddyPress registration
    https://gist.github.com/r-a-y/5578432

Viewing 25 results - 26 through 50 (of 463 total)
Skip to toolbar