shipping->enabled || $available_methods || ! $woocommerce->customer->get_shipping_country() || ! $woocommerce->customer->has_calculated_shipping() ) : ?>
|
cart->get_cart_subtotal(); ?> |
cart->get_discounts_before_tax() ) : ?>
|
-cart->get_discounts_before_tax(); ?> |
cart->needs_shipping() && $woocommerce->cart->show_shipping() && ( $available_methods || get_option( 'woocommerce_enable_shipping_calc' ) == 'yes' ) ) : ?>
|
$available_methods ) ); ?> |
cart->get_fees() as $fee ) : ?>
name ?> |
cart->tax_display_cart == 'excl' )
echo woocommerce_price( $fee->amount );
else
echo woocommerce_price( $fee->amount + $fee->tax );
?> |
cart->tax_display_cart == 'excl' ) {
foreach ( $woocommerce->cart->get_tax_totals() as $code => $tax ) {
echo '
' . $tax->label . ' |
' . $tax->formatted_amount . ' |
';
}
}
?>
cart->get_discounts_after_tax() ) : ?>
|
-cart->get_discounts_after_tax(); ?> |
|
cart->get_total(); ?>
cart->tax_display_cart == 'incl' ) {
$tax_string_array = array();
foreach ( $woocommerce->cart->get_tax_totals() as $code => $tax ) {
$tax_string_array[] = sprintf( '%s %s', $tax->formatted_amount, $tax->label );
}
if ( ! empty( $tax_string_array ) ) {
echo '' . sprintf( __( '(Includes %s)', 'woocommerce' ), implode( ', ', $tax_string_array ) ) . '';
}
}
?>
|
cart->get_cart_tax() ) : ?>
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 );
?>
cart->needs_shipping() ) : ?>
customer->get_shipping_state() || ! $woocommerce->customer->get_shipping_postcode() ) : ?>
countries->countries[ $woocommerce->customer->get_shipping_country() ];
echo apply_filters( 'woocommerce_cart_no_shipping_available_html',
'
' .
sprintf( __( 'Sorry, it seems that there are no available shipping methods for your location (%s).', 'woocommerce' ) . ' ' . __( 'If you require assistance or wish to make alternate arrangements please contact us.', 'woocommerce' ), $customer_location ) .
'
'
);
?>