Okay
  Public Ticket #1411948
Why WooCommerce "Filter Products by Attribute" show checkbox before?
Closed

Comments

  •  1
    zeals75 started the conversation

    Hi, here's my site:
    http://www.good-chance.com.tw/products

    I use "Product Categories" and "Filter Products by Attribute" both widgets on my WooCommerce Sidebar. But I found there're different style between these two widget.

    "Product Categories" widget is good but the "Filter Products by Attribute" widget's CSS style seams go wrong, it will show a check in front of the text label.

    Could you take a look for me, thank you very much!

  •  3,034
    Andrew replied

    Hi zeals75,

    You can remove that check with this CSS:

    .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{
        display:none;
    }
    .woocommerce .widget_layered_nav ul li.chosen a:after, .woocommerce-page .widget_layered_nav ul li.chosen a:after{
        display:none !important;
    }
    

    Hope this helps.

  •  1
    zeals75 replied

    Thanks, Andrew :)