Skip to content

Instantly share code, notes, and snippets.

@linksyncjameshwartlopez
Created February 6, 2019 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save linksyncjameshwartlopez/2557b01f1795e91a24c87bc398ae4d8f to your computer and use it in GitHub Desktop.
Save linksyncjameshwartlopez/2557b01f1795e91a24c87bc398ae4d8f to your computer and use it in GitHub Desktop.
Remove a javascript using dequeue
<?php
/**
Remove sorting js from gal because its giving issue to wordpress admin
**/
function wpdocs_dequeue_script() {
if(is_admin()){
//Only remove the script if the page is admin
wp_dequeue_script( 'sorting-woocommerce-prosorting-woocommerce-pro' );
}
}
add_action( 'wp_print_scripts', 'wpdocs_dequeue_script', 200 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment