This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Remove Plugin CSS

#47408
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Chris,

The documentation you linked should work, something like this:

add_filter( 'asp_load_css', 'asp_stop_load_css', 10, 1 );
function asp_stop_load_css( $stop ) {
    return true;
}

Have you used the custom code in the function.php file in the theme directory or somewhere else?