Site logo

[Resolved] Adding a Search Icon to replace text "Search"

Home Forums Support [Resolved] Adding a Search Icon to replace text "Search"

Home Forums Support Adding a Search Icon to replace text "Search"

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #599829
    antware

    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.

    #600190
    Leo
    Staff
    Customer Support

    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 🙂

    #600571
    antware

    Thanks Leo, that did the trick. Much appreciated. Have a great weekend.

    #600912
    Leo
    Staff
    Customer Support

    No problem 🙂

    #777707
    Yulia

    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.

    #777716
    Leo
    Staff
    Customer Support

    Please open a new topic for your question.

    Thanks!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Adding a Search Icon to replace text "Search"’ is closed to new replies.