• Resolved teeboy4real

    (@teeboy4real)


    Hi Greg,

    With the advent of WP Adverts 2.0 Is it possible to disable tailwind css entirely as I prefer to stick with the old wpadverts template and use of shortcode instead of blocks.

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,

    the tailwind.css is used only in the blocks, that if you keep using the shortcodes the tailwind.css will have no effect on your website.

    If you want to deregister this stylesheet anyway you can do that with the code below in your theme functions.php file

    add_action( "init", function() {
      wp_deregister_style( "wpadverts-blocks" );
      wp_deregister_style( "wpadverts-blocks-common" );
    }, 100 );
Viewing 1 replies (of 1 total)
  • The topic ‘Disable all tailwind css styles’ is closed to new replies.