Home › Forums › WoodMart support forum › Price filter gap per 10 › Reply To: Price filter gap per 10
June 27, 2023 at 11:12 am
#477494
Nello
Participant
I just found the solution with chat gpt. If useful for anyone here is the hook you can use on function.php :
function custom_price_filter_widget_step( $step ) {
// Modifier le pas (step) à 1€
$step = 1;
return $step;
}
add_filter( ‘woocommerce_price_filter_widget_step’, ‘custom_price_filter_widget_step’, 10, 1 );
Best regards