Viewing 1 replies (of 1 total)
  • Put this in your functions.php file and it should work:

    add_action( 'wp_print_styles', 'deregister_yarpphome', 100 );
    function deregister_yarpphome() {
        if ( is_home()) {
            wp_deregister_script('yarppWidgetCss');
        }
    }
Viewing 1 replies (of 1 total)

The topic ‘Disable CSS or JavaScript on home page’ is closed to new replies.