Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 8, 2017 07:00
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/2a905150696ff565f6a48484860cc5b7 to your computer and use it in GitHub Desktop.
Save wpflippercode/2a905150696ff565f6a48484860cc5b7 to your computer and use it in GitHub Desktop.
Modify Listing HTML below Google Maps Using Hook
add_filter('wpgmp_listing_html', 'wpgmp_listing_html',1,2 );
function wpgmp_listing_html($listing_html,$map) {
$listing_html = "<div class='listing_item'><h3>{marker_title}</h3> <p>{marker_message}</p></div>";
return $listing_html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment