Created
November 13, 2017 13:06
-
-
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
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('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