• Resolved ricardogs

    (@ricardogs)


    The plugin is addig actions 2 times for the Reset proccess

    (line 421 and line 266 for the last version)

    Both checking the option rcfwc_woo_reset.

    I think one of then must be rcfwc_reset

    #Line 266

    if(get_option(‘rcfwc_woo_reset’)) {
    if(!is_admin()) {
    add_action(‘lostpassword_form’,’rcfwc_field_admin’);
    add_action(‘lostpassword_post’,’rcfwc_wp_reset_check’, 10, 1);

    #Line 420

    // Woo Reset
    if(get_option(‘rcfwc_woo_reset’)) {
    add_action(‘woocommerce_lostpassword_form’,’rcfwc_field’);
    add_action(‘lostpassword_post’,’rcfwc_woo_reset_check’, 10, 1);

    This make the captcha is getting checked two times so I get duplicate request error every time.

Viewing 1 replies (of 1 total)
  • Plugin Author Elliot Sowersby

    (@elliotvs)

    Thanks, I will take a look into implementing a fix for this in the next update.

Viewing 1 replies (of 1 total)

The topic ‘captcha checked 2 times error’ is closed to new replies.