Viewing 3 replies - 1 through 3 (of 3 total)
  • Same for me. It’s because it’s loading this WordPress CSS file: login.min.css which is normally only loaded on the wp-login page.

    I added this code to my theme’s functions.php file to temporarily filter it out:

    add_filter( 'style_loader_src', function($href){
    if(strpos($href, "login.min.css") !== false) {
    return false;
    }
    return $href;
    });

    Of course, this is just temporary until they can fix it, because that also stops the file from loading when you need it on the main login page, but someone should be able to figure out how to tweak that code snippet to not function when on the login page.

    • This reply was modified 4 years, 10 months ago by joshmyself.

    To clarify for support, by “Account Page” I’m referring to the “/my-account/” page and it’s sub pages that are added by WooCommerce. I imagine this issue only shows up for people who have enabled the WooCommerce login form on their account page, and have then enabled this recaptcha plugin there too. (Deactivating this Login No Captcha reCAPTCHA plugin, solves the issue entirely.)

    Plugin Author Robert Peake

    (@robertpeake)

    With version 1.6.7 we have reverted the community-contributed CSS changes. Note that these changes were carefully tested, but multiple reports of knock-on issues in custom templates have led us to conclude that, on balance, the changes were doing more harm than good. Version 1.6.7 is identical to 1.6.5, but also adds German language support.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘plugin changing css of my account page’ is closed to new replies.