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

    I would like to change the wording in a search field box, saying Search YourSOURCE, rather than just SEARCH.

    Is there a way to change this? The website is esomethin.com/yoursource

    Thanks,
    Kurt

    #647073

    Hey Kurt,

    you could use a plugin like Poedit or Loco Translate for this.

    Best regards,
    Andy

    #647547

    Andy:

    I didn’t explain myself well.

    I am wondering if you can change the wording in Search boxes to “Search Site”? I thought you can change the css or coding within a php page.

    Thanks,

    #647551

    Hi!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_frontend_search_form_param','new_search_placeholder');
    function new_search_placeholder( $array ){
         $array['placeholder'] = __('Search Site','avia_framework');
         return $array;
    }

    Cheers!
    Yigit

    #647562

    Perfect. Just what I needed.
    Thanks,
    Kurt

    #647569

    Hey!

    You are welcome Kurt, glad we could help! Let us know if you have any other questions or issues

    Cheers!
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change the wording in search field box’ is closed to new replies.