How to Remove the CryptoWP Stylesheet
CryptoWP loads a single stylesheet file to your site to style the widget. If you’d prefer to use your own styles or want to combine the styles into your own stylesheet, use the following code snippet to disable the cryptowp.css
file.
By removing this stylesheet and combining it with your own, you will save an HTTP request. Simply paste this function into your child theme’s functions.php
file and CryptoWP’s stylesheet will be removed from your site:
/** * Remove the cryptowp.css file from <head> * * @since 1.0 */ function child_theme_dequeue_style() { wp_dequeue_style( 'cryptowp' ); } add_action( 'wp_enqueue_scripts', 'child_theme_dequeue_style' );