Issue:
Validation of add listing form elements is only called on click, blur, and submission.
https://github.com/GeoDirectory/geodirectory/blob/82eae6110febcde04430005976b85995c78c599b/geodirectory-assets/js/listing_validation.js
Steps to reproduce:
If a user clicks into the address field it will display the validation error message, upon setting the address using the map. The value of the address field is updated, however the field validation error is not removed, leaving the user to click in the field to re-initiate the validation or submit the form with the message.
https://wpgeo.directory/starter/add-listing/?listing_type=gd_place
Suggested fix:
Validate the field after setting the value in updateMarkerAddress() on map_on_add_listing_page.php, with something similar to:
validate_field(jQuery("#<?php echo $prefix.'address';?>"));
or you could also trigger blur on the field after it is set.
jQuery("#<?php echo $prefix.'address';?>").val(getAddress).trigger("blur");
https://github.com/wp-plugins/geodirectory/blob/6116ae74ba44c5fe6b3abdf72ddac320c41a6760/geodirectory-functions/map-functions/map_on_add_listing_page.php