Hello, I do have a wp_head(); and wp_footer() on my themeI’ve tried adding the two elements you’ve indicated but that doesn’t seem to solve the problem.
- Add this in your wp-config.php (done)
define( 'WPCF7_LOAD_JS', true );
2. Add this in your theme/functions.php (done in my them child)
function customize_cf7_enqueue() {
if ( wpcf7_load_js() ) {
wpcf7_enqueue_scripts();
}
}
add_action( 'wp_enqueue_scripts', 'customize_cf7_enqueue' );
Thanks in advance