Hey,
I found a solution (well kinda).
You need to go into the multicarousel.php file and find 2 instances of:
success: function(html) {
window.location.replace("<?php echo $_SERVER['REQUEST_URI']; ?>");
}
and replace the ‘success’ with ‘complete’ like so:
complete: function(html) {
window.location.replace("<?php echo $_SERVER['REQUEST_URI']; ?>");
}
Also what i then did was deleted some of the error checking, i replaced:
jQuery(function($){
$.ajaxSetup({
error:function(x,e){
if(x.status==0){
alert('You are offline!!\n Please Check Your Network.');
}else if(x.status==404){
alert('Requested URL not found.');
}else if(x.status==500){
alert('Internel Server Error.');
}else if(e=='parsererror'){
alert('Error.\nParsing JSON Request failed.');
}else if(e=='timeout'){
alert('Request Time out.');
}else {
alert('Unknow Error.\n'+x.responseText);
}
}
with
jQuery(function($){
Hope this help!