Adding Placehoder Search at Search Box

Dear Omeka Friends

I wanna ask how to add placeholder search at search box, so there is the word “Search …” at Search Box.

Thanks.

In the file search/search-form.php of your theme (or copy the one found in application/views/scripts/search), add, replace or modify the formText used for the query with the place holder:

    echo $this->formText('query', $filters['query'], array(
        'title' => __('Search'), 
        'placeholder' => __('Search...'),
    ));
1 Like

It works well

see the link http://www.repository.sadra.ac.id/

Thank you very much