captcha checked 2 times error
-
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.
The topic ‘captcha checked 2 times error’ is closed to new replies.