Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 12, 2017 05:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wpflippercode/19ac7a505564f203d58aa48985f813b5 to your computer and use it in GitHub Desktop.
Save wpflippercode/19ac7a505564f203d58aa48985f813b5 to your computer and use it in GitHub Desktop.
Stop rendering Shortcode in the Infowindow Message
add_filter('wpgmp_render_shortcode','wpgmp_render_shortcode',1,2 );
function wpgmp_render_shortcode($bool,$map) {
//Default is TRUE.
$bool = FALSE;
return $bool;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment