Support » Plugin: My Brand Login » [Plugin: My Brand Login] My Brand has stopped working after upgrade to WordPress 3.3

Viewing 8 replies - 1 through 8 (of 8 total)
  • For me also… it is like it starts to load (I can see the background color, in my case, red) but soon appears the normal WP Login: white bg and normal logo.

    Thread Starter miyakojimadan

    (@miyakojimadan)

    I don’t think the guys who created this plugin are maintaining it any more. I posted a message on their site which hasn’t been moderated yet and their most recent blog postings are from July. I think we may have to look for something else. These guys don’t seem to be around anymore. The least they could do is say that so people aren’t waiting around for support.

    Well, I can understand that plugins are made by volunteers, and maybe they have something more important right now. Anyway I think you are right and I will search for a replacement! 😉

    Thread Starter miyakojimadan

    (@miyakojimadan)

    After doing some digging around I’m coming up with a solution that will allow us to customize the login page without using a plugin or editing core WordPress files which would be overridden every time WordPress is updated.

    First let’s use a custom logo. This is done in 2 steps:

    Step 1:

    Upload the logo you want into the “images” folder within the theme folder, example:
    wp-content/themes/default/images/logo-login.gif

    Step 2:

    Add the following code to your functions.php file (the one in your theme):

    add_action("login_head", "my_login_head");
    function my_login_head() {
    	echo "
    	<style>
    	body.login #login h1 a {
    		background: url('".get_bloginfo('template_url')."/images/logo-login.gif') no-repeat scroll center top transparent;
    		height: 90px;
    		width: 400px;
    	}
    	</style>
    	";
    }

    You may have to adjust the width and height to fit your logo. If the alignment of your logo isn’t correct just adjust height or width in the above code until it’s the way you want it.

    ***I’d like to thank Andy Potanin who posted this previously in another thread. Thank him not me 🙂

    Now, I’m trying to change the background color, link colors etc of the login page using a similar solution. I’ll post it when I get it.

    Thread Starter miyakojimadan

    (@miyakojimadan)

    I’ve found an all around solution to the problem. Just click the link and your problems are over 🙂

    http://shailan.com/3004/customizing-wordpress-login-page-without-plugin/

    The best thing is that a plugin isn’t needed so the solution is permanent 🙂

    Thank you so much! Perfect!

    Thread Starter miyakojimadan

    (@miyakojimadan)

    My pleasure

    awesome! thank you!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘[Plugin: My Brand Login] My Brand has stopped working after upgrade to WordPress 3.3’ is closed to new replies.