This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: How to change the default search bar value?

Home Forums Product Support Forums Ajax Search Pro for WordPress Support How to change the default search bar value? Reply To: How to change the default search bar value?

#38002
leroileleroile
Participant

Ok I have found how to do it on my own.

For people interested, to change the default value of the search bar, it is the following code:

add_filter(“asp_print_search_query”, “asp_change_print_search_query”, 10, 2);
function asp_change_print_search_query($query, $search_id) {
// Edit query (string that is the default value)
return $query;
}