Tell us what you are trying to do?
Change the placeholder text in [wpv-control-distance] shortcode
I would like to change the placeholder text in the distance center input field. See screenshot "Geben Sie einen Standort ein"
<div class="col-sm-3">
[wpv-control-distance compare_field="adresse" distance_center_url_param="maps_distance_center" distance_center_placeholder="gg" distance_radius_url_param="maps_distance_radius" distance_unit_url_param="maps_distance_unit" default_distance="7" inputs_placeholder="<label for='toolset-maps-distance-center'>Standort</label><div class='input-group'>%%CENTER%%</div></div></div><div class='col-sm-2'><label for='toolset-maps-distance-value'>im Umkreis von</label><div class='input-group'>%%DISTANCE%%<span class='input-group-addon'>km</span></div>" visitor_location_button_text=" "]
</div>
What is the link to your site?
hidden link
Hello,
There isn't such a built-in feature, currently you can change it with some JS codes, for example, add below JS codes into your view:
jQuery( function( $ ) {
$( "#toolset-maps-distance-center" ).attr( "placeholder", 'My text here...');
});
More help:
https://toolset.com/documentation/user-guides/adding-custom-javascript-views/