@kriskoyk
Contact page is used by ajax calls.
You can update search url (in head.php) to oc-content/themes/delta/ajax.php
Alternative approach.
Add new function to functions.php:
// AJAX REQUESTS MANAGEMENT
function del_ajax_manage() {
if(Params::getParam('ajaxRequest') == 1) {
error_reporting(0);
ob_clean();
osc_current_web_theme_path('ajax.php');
exit;
}
}
osc_add_hook('init', 'del_ajax_manage');
Then update del_ajax_url() function to:
return osc_base_url() . '?ajaxRequest=1';