Same issue here. Inline css for the plugin is being generated after the recent update, even when I have selected “Don’t output CSS” in the General Settings.
It’s a local site, so no link to the site is available. I’m running WP 4.4.2.
Hi Both,
I’ve just released 2.1.2 which includes a fix for “Don’t Output CSS”, please try updating and let me know how it goes.
Tricia, I’ll get back to you tomorrow about dequeueing those scripts (it’s getting pretty late here and it’s been a long day). In the mean time you might be able to modify the code at the bottom of this page: https://www.maxmegamenu.com/documentation/pro-features/google-fonts/
The flush cache nag will be totally removed in a future release.
Regards,
Tom
The update did fix the CSS issue. Thanks much!
Get some brain-rest… looking forward to hearing back from you upon recovery. 😉
– T
I can also confirm the recent update fixed the CSS issue. Thank you for your quick response!
Hooty, thanks for the review – much appreciated! 🙂
Tricia, please can you try adding this to your themes functions.php file?
function megamenu_dequeue_scripts() {
wp_dequeue_script( 'megamenu' );
wp_dequeue_script( 'hoverIntent' );
}
add_action( 'wp_enqueue_scripts', 'megamenu_dequeue_scripts', 9999 );
function megamenu_dequeue_styles() {
wp_dequeue_style( 'dashicons' );
}
add_action( 'megamenu_enqueue_public_scripts', 'megamenu_dequeue_styles', 9999 );
Note: if you’re logged in as an admin then dashicons will be automatically re-enqueued (for the icons on the admin bar)
Regards,
Tom
Worked perfectly. Thanks so much!
– Tricia
You’re welcome & thanks for the review! 🙂
Regards,
Tom