Hello Team,
is it possible to disable only a part of Filter on Mobile? With CSS or something else?
On Mobile, I want to disable this filter, but ONLY on Mobile.
https://prnt.sc/uW-C5e5eNiBr
I tried it with the following CSS, but it looks like it don’t work.
@media only screen and (max-width: 767px){
.filter-wrap .filter-content > :last-child {
display: none !important;
}
}
and with
.products-per-page {
display: none !important;
}