Viewing 7 replies - 1 through 7 (of 7 total)
  • Thanks so much — worked for us!

    Thanks, good stuff 🙂

    That does the trick, thanks!!

    Too bad there is no cleaner way to do this, than to edit plugin code… Not possible via functions.php or something?

    Thread Starter MrFent37

    (@mrfent37)

    I’m sure it’s probably possible, but I don’t have the time to figure out how to make it work outside of the plugin. I figure since the plugin is no longer being updated, it didn’t matter if I just edit the plugin code itself.

    Seems like it is active again as a new version was just released 🙂
    Maybe it would be good to submit a Pull Request in Git? I did no see any change for WooCommerce in the changelog.

    Because I had 2 WordPress instances with different WooCommerce version, I applied a classic WC version condition with your fix

    if ( class_exists( 'WooCommerce' ) ) {
       global $woocommerce;
       if ( version_compare( $woocommerce->version, '3.0', ">=" ) ) {
    	add_action('woocommerce_register_form' ,array($wp_recaptcha,'print_recaptcha_html'),10,0);
       }
    }

    Dear plugin author Jörn,

    Can you please take into account this fix for WooCommerce 3+? Hence we can update your plugin to the latest version. Thanks & keep up the good work!!

    Best regards,
    Jurgen

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘WooCommerce 3.0 Registration Error [solved]’ is closed to new replies.