Remove search field placeholder text (Twenty Nineteen child theme)
-
I would like to remove the search placeholder text in the Twenty Nineteen theme widget. The placeholder text is as follows: “Search …”
I tried the following code (added to my functions.php file – child theme):
// Change placeholder text for search widget function wpforo_search_form( $html ) { $html = str_replace( 'placeholder="Search ', 'placeholder=" ', $html ); return $html; } add_filter( 'get_search_form', 'wpforo_search_form' );
The above code removes “Search” but leaves the 3 dots (…).
I tried this:
// Change placeholder text for search widget function wpforo_search_form( $html ) { $html = str_replace( 'placeholder="Search … ', 'placeholder=" ', $html ); return $html; } add_filter( 'get_search_form', 'wpforo_search_form' );
The above code doesn’t work at all.
What am I missing? Thanks in advance.
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove search field placeholder text (Twenty Nineteen child theme)’ is closed to new replies.