• Resolved aliarshad87

    (@aliarshad87)


    Hello,
    First of all, I would like to say thank you very much for resolving my all problems. Now I want to ask 1 more question about the radius limitations the minimum limit of 10 KM/M but I want to set the minimum limit is 1 to 2 KM in the radius bar so kindly help me on this occasion how can I set the minimum limit of radius 1 to 2 Km/M only.

    Thanks
    Regards

Viewing 1 replies (of 1 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Hi,

    You are always welcome 🙂

    Please add this snippet to your site for the purpose –

    add_filter( 'wcfm_max_radius_to_search_options', function( $max_radius ) {
    	$max_radius = array( '1' => '1', '2' => '2', '5' => '5', '10' => '10', '15' => '15', '20' => '20', '50' => '50', '100' => '100', '150' => '150', '200' => '200', '500' => '500' );
    	return $max_radius;
    });

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin – https://wordpress.org/plugins/code-snippets/

    Thank You

Viewing 1 replies (of 1 total)

The topic ‘Limited Radius’ is closed to new replies.