Created
April 25, 2018 15:36
-
-
Save AnkanSoul/f82dd1cf812d4c5410cc4421bce5f272 to your computer and use it in GitHub Desktop.
Contact Form 7 stop conflicting with other jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ==========================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