Load JavaScript and CSS Contact Form 7


Hey Walter,

First you have to prevent CR7 assets to load globally by adding the snippet below in your child theme functions.php

add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );

Then you simply have to add the snippet below in your contact.php template file:

if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
  wpcf7_enqueue_scripts();
}

if ( function_exists( 'wpcf7_enqueue_styles' ) ) {
 wpcf7_enqueue_styles();
}

Happy coding,


Thank you so much Thierry

Write a reply

Login or register to write a reply, it's free!