WeDevs Google Map to Themify Google Map Layout

[themify_is_logged_in]

[php]/*************************************************************************/
/* Update Google Map Latitude Longitude for ThemifyMap when editing Post */
/*************************************************************************/

function update_googleMap_lat_lng( $post_id, $form_id ) {
if( $form_id = ’17‘ ){
$custom_field = ‚google_map‘;
if ( isset( $_POST[$custom_field] ) ) {
$address = $_POST[$custom_field];
list( $def_lat, $def_long ) = explode( ‚,‘, $address );
}
$data = array(
‚place‘ => wp_json_encode( array(
‚place‘ => ‚Der Denis‘,
‚location‘ => array(
‚lat‘ => $def_lat,
‚lng‘ => $def_long
)
) ),
‚info‘ => ‚Köln K NRW‘,
);
update_post_meta( $post_id, ‚google_map_themify‘, $data );
}
}
add_action( ‚wpuf_edit_post_after_update‘, ‚update_googleMap_lat_lng‘, 10, 2 );
add_action( ‚wpuf_add_post_after_insert‘, ‚update_googleMap_lat_lng‘, 10, 2 );[/php]

[/themify_is_logged_in]