Support » Plugin: YITH WooCommerce Social Login » dequeue CSS call

  • Just speed-optimizing a client site. Any way to dequeue the CSS call? I figure to add the CSS manually into the theme custom CSS.

Viewing 1 replies (of 1 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi @treeflips,
    try with a functions like this:

    add_action( 'wp_enqueue_scripts', 'remove_plugin_css', 99 );
    
    function remove_plugin_css() {
    	wp_dequeue_style( 'ywsl_frontend' );
    }
Viewing 1 replies (of 1 total)
  • The topic ‘dequeue CSS call’ is closed to new replies.