remove the plugin’s font from loading
-
hello,
is there a way to remove the plugin’s font from loading? just use the general font loaded in my website? it loads an unnecessary font which causes some delays, and it’s really not needed. but I see no way to remove it. you only have a setting asking for a font to be used, but not sure what to insert there. just remove the font entirely.
I tried with filters:
add_action( ‘wp_enqueue_scripts’, function () {
wp_dequeue_style( ‘xoo-wsc-fonts’ );
wp_deregister_style( ‘xoo-wsc-fonts’ );
}, 20);and i could remove it, but then problems starts; the checkout page is blank
a simple way to remove the font would be great!
thanks
The topic ‘remove the plugin’s font from loading’ is closed to new replies.