Advertisement
vapvarun

Disable Jilt site wide

Oct 14th, 2019
461
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. add_action( 'wp_print_scripts', function() {
  2.  
  3.     // see if any EDD CSS classes would be added, we know we're on an EDD page then
  4.     $edd_classes = edd_add_body_classes( [] );
  5.    
  6.     if ( ! is_post_type_archive('download') && ! is_singular( 'download' ) && ! edd_is_checkout() && empty( $edd_classes ) ) {
  7.         wp_dequeue_script( 'edd-jilt' );
  8.     }
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement