Debut theme. How can i remove this section in the product page?

Hi,

Wondering how can i remove this specific section in the product listing page but all other things should remain unchange? Please help.

Will provide url and pw in private message.

Thanks.

2 Likes

@bpbp1

.filters-toolbar-wrapper {
    display: none !important;
}

Add this code in the bottom of the theme.css file.

@bpbp1

Let me know if you need any more help.
if helpful kindly like and accept our solution.

@bpbp1

Please share your store URL!

Thanks!

@bpbp1 Go to theme.css file and paste below css at bottom of file.

.filters-toolbar-wrapper 
{
display: none!important;
}

Hi @bpbp1 ,

if you used debut theme, you can try follow the instruction below:

  1. Go to Online Store → Theme → Customize.
  2. Default collection → Collection pages → you can disable for 2 option in below image.

Example:

  1. Go to Online Store → Theme → Edit Code → /theme.scss.liquid → paste code below into the end of the file to remove quantity product.
.filters-toolbar__product-count{
display: none;
}

If you feel like my answer is helpful, please mark it as a SOLUTION. Let me know if you have any further questions.