• Resolved joshgx

    (@joshgx)


    // changing the logo link from wordpress.org to your site
    			function my_login_url() { return get_home_url(); }
    
    		// changing the alt text on the logo to show your site name
    			function my_login_title() { return get_option('blogname'); }
    
    		// calling it only on the login page
    			add_filter('login_headerurl', 'my_login_url');
    			add_filter('login_headertitle', 'my_login_title');

    Adding this will change the url and alternate text for the logo to the blogs information instead of wordpress.org

    http://wordpress.org/extend/plugins/skin-login/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author simnor

    (@simnor)

    Aha brilliant, thanks, will add it in when I release the next version.

    Cheers

    When can we expect the new version? I also want to change the logo url and alternate text. Thanks

    nice, but where to put those codes? in skin-login.php?

    Thread Starter joshgx

    (@joshgx)

    Kara,

    It is placed in the skin-login.php at the end just before the ?>

    $sn_skin_login_css = $style_background_image.$style_background_colour.$style_logo.$style_text_colour.$style_link_colour.$style_button_colour.$style_button_border_colour.$style_theme_css.$style_custom_css;
    
    		// changing the logo link from wordpress.org to your site
    			function my_login_url() { return get_home_url(); }
    
    		// changing the alt text on the logo to show your site name
    			function my_login_title() { return get_option('blogname'); }
    
    		// calling it only on the login page
    			add_filter('login_headerurl', 'my_login_url');
    			add_filter('login_headertitle', 'my_login_title');
    
    ?>
    	<style type="text/css">
    		<?php echo $sn_skin_login_css; ?>
    	</style>
    <?php }
    add_action( 'login_enqueue_scripts', 'sn_skin_login_css_styles' );

    here is the end of the file.

    mrcavallo

    (@mrcavallo)

    wow – great fix joshgx – thanks very much!

    great addition to a very useful plugin.

    Thread Starter joshgx

    (@joshgx)

    no problem mrcavallo! glad to help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change logo url and alternate text’ is closed to new replies.