Is there a way to send the latitude and longitude of a user’s submitted geolocation into the email notifications?
For example,
I am trying to make a button when the user submits, their location will be shown in an email, without having to go into the entry dashboard.
uamv
(Joshua Vandercar (Gravity Forms))
April 2, 2025, 4:26pm
2
Give this snippet a go:
// adds geolocation modifiers for entry merge tag
// {entry:geolocation_latitude}
// {entry:geolocation_longitude}
add_filter( 'gform_merge_tag_data', function ( $data, $text, $form, $entry ) {
if ( ! empty( rgar( $_POST, 'geolocation_submitter_location' ) ) ) {
$geo = json_decode( stripslashes( rgar( $_POST, 'geolocation_submitter_location' ) ), true );
if ( ! empty( $geo['lat'] && ! empty( $geo['lng'] ) ) ) {
$data['entry']['geolocation_latitude'] = sanitize_text_field( $geo['lat'] );
$data['entry']['geolocation_longitude'] = sanitize_text_field( $geo['lng'] );
}
} else {
$data['entry']['geolocation_latitude'] = gform_get_meta( $entry['id'], 'geolocation_submitter_location_lat' );
$data['entry']['geolocation_longitude'] = gform_get_meta( $entry['id'], 'geolocation_submitter_location_lng' );
}
return $data;
}, 10, 4 );
2 Likes
Thanks alot, that worked like a charm.
You’re a boss
I paired it with this hyperlink too, and it opens the location in Google Maps whenever a user clicks the link sent to their email.
https://www.google.com/maps?q={entry:geolocation_latitude},{entry:geolocation_longitude}