Home Forums Basel support forum Hide Sort By and Price Filter in Shop Filter Reply To: Hide Sort By and Price Filter in Shop Filter

#18895

Artem Temos
Keymaster

Hi,

Try to add the following code snippet to the functions.php file in the child theme to remove these filters

add_filter( 'basel_use_custom_price_widget', '__return_false', 10 );
add_filter( 'basel_use_custom_order_widget', '__return_false', 10 );

Regards