Hi Grib
You’ll have to change the code of the plugin to achieve this.
In wp-google-maps-pro.php around line 5994, you should see this :
$map_data = do_shortcode("[wpgmza id='1' lat='$lat' lng='$lng' parent_id='$parent_id']");
}
return $content.$map_data;
}
add_filter( 'the_content', 'wpgmza_content_filter' );
Change it to this:
$map_data = do_shortcode("[wpgmza id='1' lat='$lat' lng='$lng' parent_id='$parent_id']");
}
return $map_data.$content;
}
add_filter( 'the_content', 'wpgmza_content_filter' );
Does this help?