Updated for 3.5.1 version
To change the step size in slider you need to open the
wpresidence/js/control.js file
In there you have the function wpestate_enable_slider(); in 2 places
Add the “step code ” after the value data in slider creation code . Should have something like
jQuery("#" + slider_name).slider({
range: true,
min: parseFloat(slider_min),
max: parseFloat(slider_max),
values: [price_low_val, price_max_val ],
step: 1000,
Note: this applies for shortocde, widget and mobile sliders as well.