Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save AnkanSoul/f82dd1cf812d4c5410cc4421bce5f272 to your computer and use it in GitHub Desktop.

Select an option

Save AnkanSoul/f82dd1cf812d4c5410cc4421bce5f272 to your computer and use it in GitHub Desktop.
Contact Form 7 stop conflicting with other jquery
==========================Contact Form 7 stop conflicting with other jquery =======================================
// De-register jQuery from Contact Form 7
add_action('wp_print_scripts','my_deregister_javascript', 100);
function my_deregister_javascript() {
wp_deregister_script('contact-form-7');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment