I am trying to: get the use my location button to show up
Link to a page where the issue can be seen: hidden link
I expected to see: The use my location button to show up
Instead, I got: a blank space that when inspected in the browser shows that the button is set to display none:
.js-toolset-maps-distance-current-location {
display: none !important;
}
I have tried to override the display none but I can't because the style is hardcoded to none.
We are using this code to display the radius search:
<div class="form-grouphorizontal">[wpv-control-distance default_distance="15" compare_field="family-approximate-location" distance_center_url_param="toolset_maps_distance_center" distance_radius_url_param="toolset_maps_distance_radius" distance_unit_url_param="toolset_maps_distance_unit" inputs_placeholder="Within %%DISTANCE%% miles of: %%CENTER%% "] [wpv-geolocation] [toolset-maps-distance-value origin_source='visitor_location' postmeta='wpcf-address'] [/wpv-geolocation]</div>
We put this in there after researching other posts about creating a radius search without having a map visible on the page.