Title: [Plugin: WordPress HTTPS (SSL)] 3.1 changes the login link on the home page
Last modified: August 20, 2016

---

# [Plugin: WordPress HTTPS (SSL)] 3.1 changes the login link on the home page

 *  [Fred Chapman](https://wordpress.org/support/users/fwchapman/)
 * (@fwchapman)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/)
 * Hi Mike,
 * Thanks for the update to your plugin! I noticed a small problem with Version 
   3.1: it changes the login link on the home page. With Version 3.0.4, I got the
   desired behavior, which is that the text for the login link is “Log in.” In Version
   3.1, the link text is replaced with the actual URL, and the link no longer works;
   the text is not clickable.
 * My WordPress theme uses the Genesis framework from StudioPress. The login link
   is generated by the Genesis [footer_loginout] shortcode. Here’s the PHP code 
   for the shortcode:
 *     ```
       add_shortcode( 'footer_loginout', 'genesis_footer_loginout_shortcode' );
       /**
        * Adds admin login / logout link.
        *
        * Support shortcode attributes are:
        *   after (output after link, default is empty string),
        *   before (output before link, default is empty string),
        *   redirect (path to redirect to on login, default is empty string).
        *
        * Output passes through 'genesis_footer_loginout_shortcode' filter before returning.
        *
        * @since 1.1.0
        *
        * @param array $atts Shortcode attributes
        * @return string Shortcode output
        */
       function genesis_footer_loginout_shortcode( $atts ) {
   
       	$defaults = array(
       		'after'    => '',
       		'before'   => '',
       		'redirect' => '',
       	);
       	$atts = shortcode_atts( $defaults, $atts );
   
       	if ( ! is_user_logged_in() )
       		$link = '<a href="' . esc_url( wp_login_url( $atts['redirect'] ) ) . '">' . __( 'Log in', 'genesis' ) . '</a>';
       	else
       		$link = '<a href="' . esc_url( wp_logout_url( $atts['redirect'] ) ) . '">' . __( 'Log out', 'genesis' ) . '</a>';
   
       	$output = $atts['before'] . apply_filters( 'loginout', $link ) . $atts['after'];
   
       	return apply_filters( 'genesis_footer_loginout_shortcode', $output, $atts );
   
       }
       ```
   
 * Thanks for anything you can do to fix this little glitch!
 * Fred
 * [http://wordpress.org/extend/plugins/wordpress-https/](http://wordpress.org/extend/plugins/wordpress-https/)

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

 *  [xanaftp](https://wordpress.org/support/users/xanaftp/)
 * (@xanaftp)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881443)
 * I am here to mention that this problem still exists in WordPress HTTPS 3.1.1 
   with WordPress 3.4.1
 *  Plugin Author [mvied](https://wordpress.org/support/users/mvied/)
 * (@mvied)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881473)
 * Alrighty, I’ll get a fix out soon.
 *  Thread Starter [Fred Chapman](https://wordpress.org/support/users/fwchapman/)
 * (@fwchapman)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881492)
 * Thanks, Mike. Your excellent support of this plugin is much appreciated!
 * Fred
 *  [Enterpr1se](https://wordpress.org/support/users/enterpr1se/)
 * (@enterpr1se)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881503)
 * Hi, I face same problem too
 *  [hmoore71](https://wordpress.org/support/users/hmoore71/)
 * (@hmoore71)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881530)
 * I too am having this issue. Looks like an issue with the “loginout” filter.

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

The topic ‘[Plugin: WordPress HTTPS (SSL)] 3.1 changes the login link on the home
page’ 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/)

## Tags

 * [login link](https://wordpress.org/support/topic-tag/login-link/)
 * [url](https://wordpress.org/support/topic-tag/url/)

 * 5 replies
 * 5 participants
 * Last reply from: [hmoore71](https://wordpress.org/support/users/hmoore71/)
 * Last activity: [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-wordpress-https-ssl-31-changes-the-login-link-on-the-home-page/#post-2881530)
 * Status: not resolved