• Resolved steven.m

    (@stevenmaas)


    The following css page is loaded on every page on my website.
    /wp-content/plugins/perfect-woocommerce-brands/assets/css/styles-frontend.min.css

    1) Is there a way to load only on my products page?
    2) I am only displaying the brand image after content nothing else. Can I just remove the stylesheet altogether?

Viewing 1 replies (of 1 total)
  • Plugin Contributor titodevera

    (@titodevera)

    Hi stevenmaas,

    Is posible to remove the stylesheet using the wp_dequeue_style function. The code below removes the stylesheet on all pages but you can add some extra checks here like !is_product().

    
    add_action( 'wp_print_styles', function() {
      wp_dequeue_style( 'pwb-styles-frontend' );
    } );
    

    ??

Viewing 1 replies (of 1 total)
  • The topic ‘Remove Brand stylesheet from loading on all pages’ is closed to new replies.