When entering a search in the Search Website field, it brings up the following results as you type. As you can see, it breaks the top div area. Can I turn this feature off? it is the avia_ajax_search action. Thanks.
Never mind, I found post from Victoria, which removed it.
add_action(‘after_setup_theme’, function() {
remove_action( ‘wp_ajax_avia_ajax_search’, ‘avia_ajax_search’ );
remove_action( ‘wp_ajax_nopriv_avia_ajax_search’, ‘avia_ajax_search’ );
});
You can close this ticket.