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
Hey Kurt,
you could use a plugin like Poedit or Loco Translate for this.
Best regards,
Andy
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,
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
Perfect. Just what I needed.
Thanks,
Kurt