Home Forums WoodMart support forum Disable WOODMART_Widget_Price_Filter Reply To: Disable WOODMART_Widget_Price_Filter

#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 );