• Resolved woodbe

    (@woodbe)


    I have wordpress.com logins turned off for my site (but want to have the free Jetpack functionality enabled). Every few days I see that this gets turned back on, though I have not been turning it on. Is this normal to turn it off and have it then turn on on its own? I would like to have this turned off and stay off.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Emily A. (a11n)

    (@happyaxident)

    Hi @woodbe ,

    No, it’s not expected that WordPress.com SSO would turn itself on if you have turned it off.

    So we can assist further, can you please:

    1. Confirm that you are turning it off in the settings described here: https://jetpack.com/support/sso/#enabling -this-feature
    2. Post your site URL here so that we can have a look? If you want it to remain private, you can also contact us via  contact form . If you choose to reach out directly, please include a link to this thread.

    Thank you!

    Thread Starter woodbe

    (@woodbe)

    Thank you. That is how I’ve been turning it off. The site is https://ccusersforum.org

    Plugin Author Jeremy Herve

    (@jeherve)

    Jetpack Mechanic 🚀

    I looked at your site details on our end, and I believe the feature is activated via another plugin, provided by your hosting provider. You should be able to disable this behaviour, though:

     /** * Remove the SSO module from the list of available modules, * and deactivate it if it's active. * * @see  https://wordpress.org/support/topic/wordpress-com-login-setting-keeps-turning-on-by-itself * * @param array $modules The list of available modules. */ function woodbe_force_disable_sso( $modules ) { if ( isset( $modules['sso'] ) ) { unset( $modules['sso'] ); } return $modules; } add_filter( 'jetpack_get_available_modules', 'woodbe_force_disable_sso' ); add_filter( 'option_jetpack_active_modules', 'woodbe_force_disable_sso' );

    I hope this helps. Let us know if you have any other questions!

Viewing 3 replies - 1 through 3 (of 3 total)