To remove the default filters
-
Hi, how can I remove the default filter in the “Shop filters”.
display: none; is not suitable, it turns out like this: https://yadi.sk/i/h0zuAvwa3R3GuL
Attachments:
You must be
logged in to view attached files.
Hi,
Add the following code snippet to the functions.php file in your child theme to remove default sorting and price filters
add_filter( 'basel_use_custom_price_widget', '__return_false', 10 );
add_filter( 'basel_use_custom_order_widget', '__return_false', 10 );
Regards
In the same way you can remove the “Share…” ???
Attachments:
You must be
logged in to view attached files.
You can remove them in Theme Settings -> Product page.
Regards
The topic ‘To remove the default filters’ is closed to new replies.