Skip to content

Instantly share code, notes, and snippets.

View linksyncjameshwartlopez's full-sized avatar

Jameshwart Lopez linksyncjameshwartlopez

View GitHub Profile
@linksyncjameshwartlopez
linksyncjameshwartlopez / removejs.php
Created February 6, 2019 11:45
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' );
}