wpgeo_mashup on custom taxonomy for custom post type page
Hi Ben, not sure if this is indeed an issue or if I'm doing something wrong but here goes...
Trying to use
echo do_shortcode('[wpgeo_mashup]');
inside a custom post type custom taxonomy template taxonomy-artistscat.php but on the front end, it shows only a map but no markers. I tried the shortcode before and after the loop… On Settings > WP Geo the option for the custom post type is checked (and on the custom post type single pages, the map shows the marker correctly) and the option All Taxonomies is checked. See screenshot.

The taxonomy in question is for the "Artistes" post type...
Version 3.3.7 still has this issue...
UPDATE: I think I found out why... when adding the parameter post_type="artist" to the shortcode, it now starts showing markers for all artists type posts.
Looks like the shortcode function shortcode_wpgeo_mashup defaults the "post_type" attribute to null while the function get_wpgeo_map then defaults to "post". Should the function shortcode_wpgeo_mashup not be taking the current post type as default? Or is that reserved for contextual maps?