Viewing 11 replies - 1 through 11 (of 11 total)
  • Plugin Author Robert Peake

    (@robertpeake)

    Are you talking about 1.6.7 where we reverted the changes? Did this not solve your issue?

    Thread Starter bredgade54

    (@bredgade54)

    Hi Robert,

    No, 1.6.7 works, but the problem with 1.6.6 (described in the second thread) is back with 1.6.8.

    BR, Pete

    Plugin Author Robert Peake

    (@robertpeake)

    Bummer. Any ideas what CSS lines are causing it?

    Thread Starter bredgade54

    (@bredgade54)

    Hey, Unfortunately I don’t have that, but on the Flatsome it does the same as in 1.6.6… smaller fonts + moves the page content to the left side of the screen and change the login button.
    Enfold: is the input [type = checkbox], input [type = radio] being changed so that it is not visible…
    V. 1.6.7 works as said without problems, so I hope you can fix the problem..

    BR, Pete

    Thread Starter bredgade54

    (@bredgade54)

    Hi Robert,

    Have you found a solution to this? – I’m still running version 1.6.7, which works.
    I can see that there are several others who are experiencing issues with the latest version, so I am a little worried if the error/future errors is not fixed.

    Note: Enfold and Flatsome are 2 of the most popular wordpress templates.

    Hope for a quick solution.

    BR, Pete

    cwebsite

    (@conversiewebsite)

    Same issue with Astra theme and Woocommerce !!!

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

    It’s because on this line: “wp_register_style(‘login_nocaptcha_css’, plugin_dir_url( __FILE__ ) . ‘css/style.css’, array( ‘login’ ), filemtime( __FILE__ ));” in login-nocaptcha.php.
    That “array( ‘login’ )” includes example.com/wp-admin/css/login.min.css on any page that this plugin gets called/works on. It’s a dependency declaration which forces that the other CSS file gets included. You can instead pass array() instead of array(‘login’) which will remove the extra css file.
    So: “wp_register_style(‘login_nocaptcha_css’, plugin_dir_url( __FILE__ ) . ‘css/style.css’, array(), filemtime( __FILE__ ));”

    This plugin had reverted another CSS change people were claiming to have an issue with, but left this line. It’s inadvertently including the CSS that normally only gets included on this page: example.com/wp-login.php.

    Also unrelated but this latest version on this plugin also includes an extra copy of the plugin in a /trunk/ folder which should also be removed.

    Plugin Author Robert Peake

    (@robertpeake)

    @swizzlestick feel free to submit a pull request: https://github.com/cyberscribe/login-recaptcha — thanks!

    Plugin Author Robert Peake

    (@robertpeake)

    Thanks @swizzlestick – this has been pushed to the plugin repository. Hoping it helps!

    Thread Starter bredgade54

    (@bredgade54)

    Thanks, beautiful – I can confirm that it works on Enfold/Flatsome theme now.

    BR, Pete

    cwebsite

    (@conversiewebsite)

    Yes it’s fixed for Astra also!

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘latest version conflict on checkout page woo’ is closed to new replies.