just something I use in case you are interested. for a custom logo on the login page, rather thana plugin I just do this:
uplaod logo to images folder in my theme
add this to functions.php of my theme
// THIS ADDS CUSTOM LOGO TO LOGIN PAGE
function my_custom_login_logo() {
echo '<style type="text/css">
h1 a { background-image:url('.get_bloginfo('template_directory').'/images/loginLogo.png) !important; height:145px !important; }
</style>';
}
add_action('login_head', 'my_custom_login_logo');
now I’ve got a plugin free custom login logo
Thanks RVoodoo, will do that. Looks pretty simple. However I am not a programmer and I am totally 0 with PHP. But this looks simple. Thank you. One problem solved.
sure. its just a simple copy/paste (and of course changing this part ‘/images/loginLogo.png’ to reflect the name of your actual image.)
just make sure that the code I provided is inside the <?php and ?> tags and you’ll be safe!
Got that working. Yepee. Thanks RVoodoo. You are a champ.
Regarding the custom logo, it doesn’t work on 2.9.2 because of freshly installed WP 2.9 doesn’t have the upload_path saved in db, as discusssed here:
http://ww.wp.xz.cn/support/topic/348339?replies=7
Just save the value wp-content/uploads under Settings > Misc., the custom logo should work. Hope it helps.
I found the problem (regarding uploading a unique header). You have to have access to the file manager for your site. Once you get there, you have to move the header that you uploaded to yoursitename.com/blog/wp-content/uploads (or however you have your site set up).
For some reason, Pie Register places the header file in the main directory.