Hi GP team,
Can we add text on search box like the youtube search box (something like a guide text: type to search…).? When we click to search button and search box appear with the text, then we type something over it.
Hope to get your support.
P/S: just let you know I am using this php code to auto clear search box after searching:
add_filter( 'generate_navigation_search_output', function() {
return sprintf( // WPCS: XSS ok, sanitization ok.
'<form method="get" class="search-form navigation-search" action="%1$s">
<input autocomplete="off" type="search" class="search-field" value="" name="s" title="%2$s" />
</form>',
esc_url( home_url( '/' ) ),
esc_attr_x( 'Search', 'label', 'generatepress' )
);
} );