• Resolved Francisco

    (@fmarconi)


    Hi, i’m not using star reviews and I have load speed issues.
    The star font is tiny tiny, but takes 150ms

    …woo/woo-star-font.min.css(sitio.tcm.cl) 1 KB 150 ms

    is it possible to deactivate it. I looked on script and styles admin panel but it isn’t there
    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Please add the below code in functions.php file of your child theme to fix the issue.

    function childtheme_dequeue_star_font() {
        if ( class_exists( 'OceanWP_WooCommerce_Config' ) ) {
            wp_dequeue_style( 'oceanwp-woo-star-font' );
            wp_deregister_style( 'oceanwp-woo-star-font' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'childtheme_dequeue_star_font', 9999 );
    Thread Starter Francisco

    (@fmarconi)

    Thank’s a lot

    you’re most welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘woo star font dequeue’ is closed to new replies.