Gravity Forms Geolocation Details in Email

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.

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 :saluting_face:

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}