Comment on page
Empty search input field on the search results page
Make the search query disappear from the input field on the search results page after redirection
add_filter("asp_print_search_query", "asp_change_print_search_query", 10, 2);
function asp_change_print_search_query($query, $search_id) {
// Return empty string
return '';
}