Archived topic
Adding a Search Icon to replace text "Search"
5 replies · Started by antware on June 14, 2018
Hi guys
Any ideas as to how to add a simple "Search - Magnifying Glass" Icon onto the Search Form in my website's header at my given URL.
So in other words on the submit button have an icon instead of the word "Search"
Thank you.
Hi there,
This snippet should work:
add_filter('get_search_form', 'my_search_form_text');
function my_search_form_text($text) {
$text = str_replace('value="Search"', 'value="Click me"', $text); //set as value the text you want
return $text;
}
Adding PHP: https://docs.generatepress.com/article/adding-php/
Let me know :)
Thanks Leo, that did the trick. Much appreciated. Have a great weekend.
No problem :)
Hi, can you please help with the Search field like this:
https://footslove.com/support/
I accomplished all the look, except for the icon. Thanks.
Please open a new topic for your question.
Thanks!