Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created September 28, 2017 12:33
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/a5c92df20c86fbc722c0b39c62aa3ac2 to your computer and use it in GitHub Desktop.
Save wpflippercode/a5c92df20c86fbc722c0b39c62aa3ac2 to your computer and use it in GitHub Desktop.
Modify Strings Used on Frontend in Google Maps Plugin
add_filter('wpgmp_text_settings','wpgmp_text_settings',1,2);
function wpgmp_text_settings($strings,$map_id) {
$strings['search_placeholder'] = "";
return $strings;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment