Title: WordPress HTTPS breaks Theme My Login plugin
Last modified: August 20, 2016

---

# WordPress HTTPS breaks Theme My Login plugin

 *  [kaptkaos](https://wordpress.org/support/users/kaptkaos/)
 * (@kaptkaos)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/wordpress-https-breaks-theme-my-login-plugin/)
 * I am using Theme My Login widget on the home page. When anyone enters their login
   info the site just sits there for awhile. Then redirects to the login page. When
   I disable wordpress https, everything works fine. This just started when I upgrade
   the wordpress HTTPS plug-in.
 * [http://wordpress.org/extend/plugins/wordpress-https/](http://wordpress.org/extend/plugins/wordpress-https/)

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

 *  [Greg Marshall](https://wordpress.org/support/users/gmarsh/)
 * (@gmarsh)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/wordpress-https-breaks-theme-my-login-plugin/#post-3519142)
 * Try pulling up your login page, and checking the box for “Secure post”. It just
   fixed the problem for me.
 *  [Greg Marshall](https://wordpress.org/support/users/gmarsh/)
 * (@gmarsh)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/wordpress-https-breaks-theme-my-login-plugin/#post-3519143)
 * To clarify, I mean in the Page editor pull up the page named “login” which has
   your theme-my-login shortcode, and then check that box.
 *  [ReactorShop](https://wordpress.org/support/users/reactorshop/)
 * (@reactorshop)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/wordpress-https-breaks-theme-my-login-plugin/#post-3519305)
 * Please insert this code snippet into a plugin or your theme’s function.php file:
 *     ```
       /*Fixes the infinite loop when trying to log into the admin page (from a HTTPS page
       */into a HTTP page) by setting the WordPress cookie as not secure.
       function rsssl_secure_cookie( $secure_cookie, $credentials ) {
       	return FALSE;
       }
       add_filter( 'secure_signon_cookie', 'rsssl_secure_cookie', 10, 2 );
       ```
   

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

The topic ‘WordPress HTTPS breaks Theme My Login plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wordpress-https_bec2c9.svg)
 * [WordPress HTTPS (SSL)](https://wordpress.org/plugins/wordpress-https/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wordpress-https/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wordpress-https/)
 * [Active Topics](https://wordpress.org/support/plugin/wordpress-https/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wordpress-https/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wordpress-https/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [ReactorShop](https://wordpress.org/support/users/reactorshop/)
 * Last activity: [12 years, 2 months ago](https://wordpress.org/support/topic/wordpress-https-breaks-theme-my-login-plugin/#post-3519305)
 * Status: not resolved