Plugin Author
Arshid
(@arshidkv12)
Please send WordPress and contact form 7 version details.
Thanks for the quick reply!
Contact Form 7 – 4.8.1
Wordpress 4.8
Plugin Author
Arshid
(@arshidkv12)
I tested, but it is working fine.
Please change theme then test it.
I have created a dev site and changed the theme to twenty seventeen and it seems to have worked. Not sure where to look now – any idea?
Thanks for your help!!
Plugin Author
Arshid
(@arshidkv12)
Add following code to your wp-config.php file
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
Then go to wp-content -> debug.log check error.
Hmmm – I see the issue. I have some forms doing some db entries in the child functions. When those are activated – the data is not being stored – but when I activate them – the data is not being stored:
remove_all_filters (‘wpcf7_before_send_mail’);
add_action( ‘wpcf7_before_send_mail’, ‘action_wpcf7_before_send_mail’, 10, 1 );
Maybe there is something wrong with these. Any idea?
Thanks for your help and time on this…
Plugin Author
Arshid
(@arshidkv12)
remove_all_filters (‘wpcf7_before_send_mail’);
add_action( ‘wpcf7_before_send_mail’, ‘action_wpcf7_before_send_mail’, 10, 1 );
Remove above code .
I got it. I removed that code and needed to adjust the contact form ID reference. Seems like it is working now – thanks for your help and time!!