Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shawnkfinn/d63aea7a87a0596e8c2862de7baeb3bb to your computer and use it in GitHub Desktop.
Save shawnkfinn/d63aea7a87a0596e8c2862de7baeb3bb to your computer and use it in GitHub Desktop.
Contact Form 7, version 3.9+ : Disable loading of CSS & JS
<?php // Copy and Paste snippet below into child-theme functions or custom plugin -- DELETE THIS LINE
// Globally disables WPCF7 JS & CSS
add_filter( 'wpcf7_load_js', '__return_false' );
add_filter( 'wpcf7_load_css', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment