diff --git a/themes/default/js/cart-summary.js b/themes/default/js/cart-summary.js index e7161198e..ad7f7f5b3 100644 --- a/themes/default/js/cart-summary.js +++ b/themes/default/js/cart-summary.js @@ -291,16 +291,21 @@ function deleteProductFromSummary(id) location.reload(); if (parseInt(jsonData.summary.products.length) == 0) { - $('#center_column').children().each(function() { - if ($(this).attr('id') != 'emptyCartWarning' && $(this).attr('class') != 'breadcrumb' && $(this).attr('id') != 'cart_title') - { - $(this).fadeOut('slow', function () { - $(this).remove(); - }); - } - }); - $('#summary_products_label').remove(); - $('#emptyCartWarning').fadeIn('slow'); + if (typeof(orderProcess) == 'undefined' || orderProcess != 'order-opc') + document.location.href = document.location.href; // redirection + else + { + $('#center_column').children().each(function() { + if ($(this).attr('id') != 'emptyCartWarning' && $(this).attr('class') != 'breadcrumb' && $(this).attr('id') != 'cart_title') + { + $(this).fadeOut('slow', function () { + $(this).remove(); + }); + } + }); + $('#summary_products_label').remove(); + $('#emptyCartWarning').fadeIn('slow'); + } } else { @@ -784,4 +789,4 @@ function updateExtraCarrier(id_delivery_option, id_address) $('#HOOK_EXTRACARRIER_'+id_address).html(jsonData['content']); } }); -} \ No newline at end of file +}