';
}
}
// No shipping methods are available
} else {
if ( ! $woocommerce->customer->get_shipping_country() || ! $woocommerce->customer->get_shipping_state() || ! $woocommerce->customer->get_shipping_postcode() ) {
echo '
'.__('Please fill in your details to see available shipping methods.', 'woocommerce').'
';
} else {
echo '
'.__('Sorry, it seems that there are no available shipping methods for your state. Please contact us if you require assistance or wish to make alternate arrangements.', 'woocommerce').'
';
}
}
?>
cart->get_cart_tax() ) :
$taxes = $woocommerce->cart->get_formatted_taxes();
if (sizeof($taxes)>0) :
$has_compound_tax = false;
foreach ($taxes as $key => $tax) :
if ($woocommerce->cart->tax->is_compound( $key )) : $has_compound_tax = true; continue; endif;
?>
cart->tax->get_rate_label( $key );
?>
cart->prices_include_tax) :
?>
cart->get_cart_subtotal( true ); ?>
$tax) :
if (!$woocommerce->cart->tax->is_compound( $key )) continue;
?>
customer->is_customer_outside_base() && ! $woocommerce->customer->has_calculated_shipping() ) ? sprintf( ' ' . __('(taxes estimated for %s)', 'woocommerce'), $woocommerce->countries->estimated_for_prefix() . __($woocommerce->countries->countries[ $woocommerce->countries->get_base_country() ], 'woocommerce') ) : '';
printf(__('Note: Shipping and taxes are estimated%s and will be updated during checkout based on your billing and shipping information.', 'woocommerce'), $estimated_text );
?>