Skip to content

Instantly share code, notes, and snippets.

@wpflippercode
Created November 13, 2017 13:06
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/18ab5dd27156ece70a5f00b537cfb398 to your computer and use it in GitHub Desktop.
Save wpflippercode/18ab5dd27156ece70a5f00b537cfb398 to your computer and use it in GitHub Desktop.
Update default placeholder text of search input textbox inside product availability google map
add_filter('wdap_placeholder_search','wdap_placeholder_search');
function wdap_placeholder_search($placeholder) {
//Modify search textbox's default placeholder value.
return $placeholder;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment