Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Clear form after submission › Reply To: Clear form after submission
May 25, 2022 at 1:53 pm
#37854
Keymaster
You are correct, that was my mistake.
To clear the input field, you need an additional code as well:
add_filter("asp_print_search_query", "asp_change_print_search_query", 10, 2);
function asp_change_print_search_query($query, $search_id) {
return '';
}