Home Forums Basel support forum How I can remove the "sort by"and "price filter",if its nothing on shop filters Reply To: How I can remove the "sort by"and "price filter",if its nothing on shop filters

#68354

Artem Temos
Keymaster

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