Radius Filter
How Can We Help?
To change the default radius ranges in the search filter we have provided a wordpress filter. You can add the following code snippet to your themes functions.php file to make use of this filter to change the radius values;
function my_radius_filter( $data ) {
return array(0.5,1,2,3,5,10);
}
add_filter('wppf_filter_radius', 'my_radius_filter');