Skip to content

Instantly share code, notes, and snippets.

@rajeshsingh520
Created February 1, 2025 00:46
Show Gist options
  • Save rajeshsingh520/1fa0fe15001f2b8d08afccce412dd2eb to your computer and use it in GitHub Desktop.
Save rajeshsingh520/1fa0fe15001f2b8d08afccce412dd2eb to your computer and use it in GitHub Desktop.
add_action( 'wp_enqueue_scripts', function(){
if(function_exists('is_checkout') && is_checkout()){
wp_dequeue_script( 'jquery-ui-i18n' );
wp_deregister_script( 'jquery-ui-i18n' );
wp_dequeue_style( 'jquery-ui-style' );
wp_deregister_style( 'jquery-ui-style' );
}
}, PHP_INT_MAX );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment