From 137b01c74c280e2768a9b05c4214f86a403c0a25 Mon Sep 17 00:00:00 2001 From: Brent Shepherd Date: Mon, 24 Sep 2012 12:55:57 +1000 Subject: [PATCH] Show taxes if there are formatted taxes The cart only checks if an order has tax when deciding to display taxes. Subscriptions 1.2+ stores recurring taxes separately, so when an order has a free trial period and no sign-up fee, order tax will be 0 but the recurring taxes should still be displayed. --- templates/checkout/review-order.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/checkout/review-order.php b/templates/checkout/review-order.php index fc82cec9502..6dec6898c07 100755 --- a/templates/checkout/review-order.php +++ b/templates/checkout/review-order.php @@ -121,9 +121,9 @@ $available_methods = $woocommerce->shipping->get_available_shipping_methods(); cart->get_cart_tax()) : + $taxes = $woocommerce->cart->get_formatted_taxes(); - $taxes = $woocommerce->cart->get_formatted_taxes(); + if ( $woocommerce->cart->get_cart_tax() || ! empty( $taxes ) ) : if (sizeof($taxes)>0) :