Hello,
We see a solution to get this work AND have only required filter in mobile view, follow me stp by step :
1. First have a look on
this tutorial
to learn how to add custom Css
2. Then identify the element you want to hide in your mobile view & use this kind of command :
@media only screen and (max-width: 600px) {
.Your_element_unrequired {
display: none;
}
}
=> Learn more about the @media properties,
here
.
3. Add it to your
frontend style Css, this will allow you to keep your custom Css while updating your HikaShop version.
Regards