Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter dajocka

    (@dajocka)

    fixed:

    add_action( ‘wp_print_scripts’, ‘my_deregister_javascript’, 100 );

    function my_deregister_javascript() {

    if ( ! is_page(‘1546’ ) ) {

    wp_deregister_script( ‘wc-category-showcase’ );
    }
    }

    add_action( ‘wp_print_styles’, ‘my_deregister_styles’, 100 );

    function my_deregister_styles() {
    if ( ! is_page(‘1546’ ) ) {

    wp_deregister_style( ‘wc-category-showcase’ );
    }
    }

Viewing 1 replies (of 1 total)