From 86cb37c8357267bdbe9cdad89235183be71afa9d Mon Sep 17 00:00:00 2001 From: mDeflotte Date: Mon, 9 Jul 2012 09:21:54 +0000 Subject: [PATCH] // Shipping line must not be hidded when shipping are offered --- themes/default/js/cart-summary.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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));