Skip to content

Instantly share code, notes, and snippets.

@yratof
Last active August 29, 2015 14:01
Show Gist options
  • Save yratof/e985ff3f5c9efbc75769 to your computer and use it in GitHub Desktop.
Save yratof/e985ff3f5c9efbc75769 to your computer and use it in GitHub Desktop.
Stop loading Contact Form 7 scripts and styles when you don't need them
<?php
if ( function_exists( 'wpcf7_enqueue_scripts' ) ) {
wpcf7_enqueue_scripts(); // This loads the needed scripts
//wpcf7_enqueue_styles(); // This loads your styles, but i prefer to use my own attached
}
?>
define('WPCF7_LOAD_JS', false);
define('WPCF7_LOAD_CSS', false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment