Hi,
You can turn off predictive search turn off by inserting some javascript code at Admin -> Theme Options -> Custom JS-:
<script>
jQuery( document ).ready(function() {
jQuery('.ajax-search-form input[name=s]').on('keyup', function(e) {
return false;
});
});
</script>
Thanks 🙂
With Best Regards
Swift Ideas