Created
September 28, 2017 12:33
-
-
Save wpflippercode/a5c92df20c86fbc722c0b39c62aa3ac2 to your computer and use it in GitHub Desktop.
Modify Strings Used on Frontend in Google Maps Plugin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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