• Resolved cheyenne711

    (@cheyenne711)


    Hello,

    Is it possible to increase the search area radius? The default is set to 300 miles but it would be nice to set it higher like 5,000 miles.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Muhammad Ali Akbar

    (@alireyad)

    Hello,
    Yes, it is possible to increase the search radius beyond the default 300 miles. You can set a higher limit using filter hook in your theme’s functions.php file or a custom plugin:

    add_filter('rtcl_radius_search_options', function ($options) {

    if (!is_array($options)) {
    return $options;
    }

    $options['max_distance'] = 5000;

    return $options;
    });

    This will increase the maximum selectable radius for the search feature.

    If you need help applying it to your site, please create a ticket on our website. Our support team will be happy to assist you further.

    Thank you

    Thread Starter cheyenne711

    (@cheyenne711)

    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.