• Resolved ashkan_72kiany

    (@ashkan_72kiany)


    How can I remove the loaded style? I tried the wp_dequeue_style and wp_deregister_style methods, but I was not successful.

    <link rel='stylesheet' id='post-views-counter-frontend-css'  type='text/css' media='all' />

Viewing 1 replies (of 1 total)
  • Thread Starter ashkan_72kiany

    (@ashkan_72kiany)

    I found the solution. The style name must be without the suffix -css

    function remove_global_styles(){
        wp_deregister_style( 'dashicons' );
        wp_deregister_style('post-views-counter-frontend');
    }
    add_action( 'wp_enqueue_scripts', 'remove_global_styles' );
Viewing 1 replies (of 1 total)
  • The topic ‘Delete the loaded style’ is closed to new replies.