Please restore the custom CSS functionality, without it, this plugin looses 85% of its value!
]]>Hi,
There is a critical error in 3.5.2:
Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, function “apa_cli_custom_css” not found or invalid function name
The following line needs to be removed, line 84 in customize-login-image: add_action( ‘login_head’, ‘apa_cli_custom_css’ );
The function was removed, but not the add_action.
Thank you,
Kevin
]]>User login status, Access wp-login.php cannot be redirected to the admin background
]]>Would be nice the plugin to support the WP native gallery, getting the image and storing it’s sizes. This way, the Logo size could be customizable.
Another thing is the text color. When i change the background to an dark color, i need to set the links color to white, using custom CSS. Would be nice an color picker for this purpose.
]]>Latest update causes
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘cli_show_server_hostname’ not found or invalid function name in /home/***/public_html/wp-includes/plugin.php on line 524
Thanks
]]>Getting this error disabling the entire site when your plugin is active: Fatal Error: …/customize-login-image/customize-login-image.php on line 66
Plugin is disabled right now so the site can work. Site is https://brookeswann.com.
What’s up?
]]>Although you select or upload an image… plugin doesn’t catch it
]]>Hi my custom image is not displaying.. site is xtremecsc.com/users.php
]]>can this change the logout logo, image link, and text too?
thanks
]]>Was wondering how to make the logo image work with a size larger than 310×70? I have a company logo size 300×225 that I’d like to use. I tried using css padding and margin but that just seems to cut off the image at the bottom. Is there a file I can change the image dimensions to reflect the larger size?
]]>Hi ADM, First off, your plugin is awesome. It’s exactly what I needed. You’ve boiled down changing the WP Login with a simple interface with the core elements.
Thanks so much. Including the CSS Entry Box was pure genius.
Now, I’am having just a little bit of an issue with styling the Background of the Username and Password Fields.
I have been able to style the border of these fields but for some reason the Background remains yellow no matter what I’ve tried.
Here’s the CSS I’ve used:
.login input[type="text"]{
background-color:rgba(90,90,90,.6)!important;
border-color:#33d42a;
}
.login input[type="password"]{
background-color:rgba(0,0,0,.6);
border-color:#33d42a;
}
I’ve also tried using more specific selectors like this:
body.login div#login form#loginform input {}
body.login div#login form#loginform input#user_login {}
body.login div#login form#loginform input#user_pass {}
Perhaps, something else is going on that you may know about.
Hope your able to advise me on this.
Thanks
PS I’ll give a 5 star review once this issue is resolved.
]]>WP 3.8 switched to a small SVG logo. As a result of new style rules, the custom logo is cropped to width 80px.
I suggest this fix for customize-login-image.php Version: 1.3. Replace lines 39-52 with a rewritten function cli_logo_file():
function cli_logo_file() {
$bgimage= get_option( 'cli_logo_file' );
if (! $bgimage ) {
$upload_dir = wp_upload_dir();
$customize_login_image = $upload_dir['basedir'] . '/customize-login-image.png';
if (@file_exists($customize_login_image) && is_readable($customize_login_image)) {
$bgimage= $upload_dir['baseurl'] . '/customize-login-image.png';
}
}
if ( $bgimage ) {
echo '<style>
#loginform {
margin-top: 0; /* make WP 3.8 look like pre-3.8 */
}
#login h1 a {
background-image: url("' . $bgimage . '");
background-size: auto;
width: auto; /* needed for WP 3.8 */
margin: 0; /* make WP 3.8 look like pre-3.8 */
}
</style>' . "\n";
}
}
Note, this is not a minimal fix. For a minimal fix, just add
width: auto!important; margin: 0!important; } #loginform { margin-top: 0;
to the styles in the original code. That will make the logo the right size, and eliminate some new vertical space in WP 3.8 between the logo and the login box.
My fix changes:
* Do nothing is we do not have a replacement logo. The original code puts in the WordPress logo when there is no replacement logo.
* Switch !important to #login. I think this should always work, and it’s easier to read in your browser’s Inspect Element.
Optional: if you have a logo that worked with the old white background but now looks wrong, you can try:
background-color: #fff; /* quick fix to make WP 3.8 look like pre-3.8 */
Or just upload a new logo that is 320px wide (untested).
The advice in customize-login-image-options.php:
_e( 'Enter a URL or upload logo image. Maximum height: 70px, width: 310px.', 'customize-login-image' );
should be changed to
_e( 'Enter a URL or upload logo image. Use an image 320px wide if you want to match the default WordPress login box.', 'customize-login-image' );