Home › Forums › WoodMart support forum › Disable WOODMART_Widget_Price_Filter › Reply To: Disable WOODMART_Widget_Price_Filter
August 1, 2018 at 1:59 pm
#70430
Artem Temos
Keymaster
Add the following code snippet to the functions.php file in your child theme to remove default sorting and price filters
add_filter( 'woodmart_use_custom_price_widget', '__return_false', 10 );
add_filter( 'woodmart_use_custom_order_widget', '__return_false', 10 );