Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Remove Plugin CSS › Reply To: Remove Plugin CSS
March 18, 2024 at 6:45 pm
#47408
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?