Disable CSS in frontend
-
How can I prevent stardard plugin CSS is loading in frontend.
define('NGG_SKIP_LOAD_SCRIPTS',TRUE);
or
add_action('wp_print_styles', 'wpse_82982_removeStyles'); function wpse_82982_removeStyles() { wp_dequeue_style('NextGEN'); wp_dequeue_style('shutter'); }
not working
(newest version breaks my custom ngg css)
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Disable CSS in frontend’ is closed to new replies.