Home Forums WoodMart support forum Price range slider problem Reply To: Price range slider problem

#159834

Artem Temos
Keymaster

Try to edit the file wp-content/themes/woodmart/inc/shortcodes/product-filters.php

and replace these lines

$min = floor( $prices->min_price );
$max = ceil( $prices->max_price );

with these

$min = apply_filters( 'woocommerce_price_filter_widget_min_amount', floor( $prices->min_price ) );
$max = apply_filters( 'woocommerce_price_filter_widget_max_amount', ceil( $prices->max_price ) );

Regards