Woocommerce drop down and text size

Can you please tell me how I can remove the dropdown and reduce the text size in the category page of woocommerce

Hello @dylandesilva,

Thanks for writing in!

1.) To remove the sort filter in your shop page, please add the following code in your child theme’s functions.php file

// remove default sorting dropdown
 
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );

For your reference, please check this out:

If you want to use a plugin instead, you can check out this link:

2.) I am checking Briskleen site. I noticed that you added this custom CSS:

.woocommerce li.product .entry-header h3 {
    font-size: 100%;
    line-height: 1.05;
    text-align: center;
}

If you want to change the font size, please use 1.5em for the font sizing.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.