Home › Forums › WoodMart support forum › Filter widget issues, argh!!! › Reply To: Filter widget issues, argh!!!
March 13, 2020 at 7:16 am
#179694

Artem Temos
Keymaster
Hello,
Add the following snippet to the functions.php file in the child theme to remove standard sorting and price filter widgets correctly
add_action( 'wp', function (){
add_filter( 'woodmart_use_custom_order_widget', '__return_false' );
add_filter( 'woodmart_use_custom_price_widget', '__return_false' );
}, 10 );
Send us some screenshots of other problems you have as well as your website link.
Kind Regards