For people, like me, who really need things broken down step-by-step:
CHANGE THE FIRST FILE
/wp-deals/wpdeals-assets/js/wpdeals_plugins.js
in line 8, delete or comment out code by changing from
if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
alert('blockUI requires jQuery v1.2.3 or later! You are using v' + $.fn.jquery);
return;
}
to
/*if (/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery) || /^1.1/.test($.fn.jquery)) {
alert('blockUI requires jQuery v1.2.3 or later! You are using v' + $.fn.jquery);
return;
}*/
CHANGE THE SECOND FILE
/wp-deals/wpdeals-assets/js/admin/wpdeals_admin.js
in line 14, delete or comment out code by changing from
(function($){if(/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery)||/^1.1/.test($.fn.jquery)){alert('blockUI requires jQuery v1.2.3 or later! You are using v'+$.fn.jquery);return;}
to
/*(function($){if(/1\.(0|1|2)\.(0|1|2)/.test($.fn.jquery)||/^1.1/.test($.fn.jquery)){alert('blockUI requires jQuery v1.2.3 or later! You are using v'+$.fn.jquery);return;}*/
I hope this helps and the best of luck to you!