Any update on this? It would also be useful to have an option to not load Font Awesome in the plugin’s settings or make available a filter.
Plugin Contributor
Ewout
(@pomegranate)
The latest version of WooCommerce Menu Cart uses FontAwesome 4.7.0 and loads it in a separate CSS file. 4.7.0 is the newest FontAwesome available, but if you would like to unload it:
add_action( 'wp_enqueue_scripts', 'wpmenucart_dequeue_fontawesome', 999 );
function wpmenucart_dequeue_fontawesome() {
wp_dequeue_style( 'wpmenucart-fontawesome' );
}
Hope that helps!
Ewout
Thanks Ewout. That works.