diff --git a/themes/default/js/cart-summary.js b/themes/default/js/cart-summary.js index a2a520128..3bf1fa895 100644 --- a/themes/default/js/cart-summary.js +++ b/themes/default/js/cart-summary.js @@ -673,11 +673,8 @@ function updateCartSummary(json) $('#total_price_without_tax').html(formatCurrency(json.total_price_without_tax, currencyFormat, currencySign, currencyBlank)); $('#total_tax').html(formatCurrency(json.total_tax, currencyFormat, currencySign, currencyBlank)); - if (json.total_shipping <= 0) - $('.cart_total_delivery').fadeOut(); - else + if (json.total_shipping > 0) { - $('.cart_total_delivery').fadeIn(); if (priceDisplayMethod != 0) { $('#total_shipping').html(formatCurrency(json.total_shipping_tax_exc, currencyFormat, currencySign, currencyBlank));