Hi @celes15,
Are you trying to change the placeholder text of the search form on the 404 page?
Just want to make sure we’re on the same page before digging into this.
Thanks! 🙂
Best,
David
Hi @davidvongries ,
Yeah I tried it but it didn’t help.
It’s work only for 404.
-
This reply was modified 5 years, 2 months ago by
celes15.
Please try to add the code below to your child-theme’s functions.php to change the search form placeholder text in Page Builder Framework:
function your_prefix_custom_search_form_placeholder() {
return 'Search';
}
add_filter( 'wpbf_search_placeholder', 'your_prefix_custom_search_form_placeholder' );