2013-08-14 20:00:34 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* Cart totals
2013-08-14 20:00:34 +00:00
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme / woocommerce / cart / cart - totals . php .
2015-10-01 14:07:20 +00:00
*
2016-02-12 11:28:41 +00:00
* HOWEVER , on occasion WooCommerce will need to update template files and you
* ( the theme developer ) will need to copy the new files to your theme to
* maintain compatibility . We try to do this as little as possible , but it does
* happen . When this occurs the version of the template file will be bumped and
* the readme will list any important changes .
2015-10-01 14:07:20 +00:00
*
2016-07-19 10:30:31 +00:00
* @ see https :// docs . woocommerce . com / document / template - structure /
2013-08-14 20:00:34 +00:00
* @ author WooThemes
* @ package WooCommerce / Templates
2015-03-10 16:57:43 +00:00
* @ version 2.3 . 6
2013-08-14 20:00:34 +00:00
*/
2014-09-22 16:31:03 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
2015-03-10 16:57:43 +00:00
exit ;
2014-09-22 16:31:03 +00:00
}
2013-08-14 20:00:34 +00:00
?>
2017-03-07 20:24:24 +00:00
< div class = " cart_totals <?php echo ( WC()->customer->has_calculated_shipping() ) ? 'calculated_shipping' : ''; ?> " >
2013-08-14 20:00:34 +00:00
< ? php do_action ( 'woocommerce_before_cart_totals' ); ?>
2016-10-12 10:16:30 +00:00
< h2 >< ? php _e ( 'Cart totals' , 'woocommerce' ); ?> </h2>
2013-08-14 20:00:34 +00:00
2015-11-02 13:23:04 +00:00
< table cellspacing = " 0 " class = " shop_table shop_table_responsive " >
2013-08-14 20:00:34 +00:00
< tr class = " cart-subtotal " >
2015-03-10 16:57:43 +00:00
< th >< ? php _e ( 'Subtotal' , 'woocommerce' ); ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php esc_attr_e( 'Subtotal', 'woocommerce' ); ?> " >< ? php wc_cart_totals_subtotal_html (); ?> </td>
2013-08-14 20:00:34 +00:00
</ tr >
2014-11-24 17:24:25 +00:00
< ? php foreach ( WC () -> cart -> get_coupons () as $code => $coupon ) : ?>
2015-03-27 15:38:57 +00:00
< tr class = " cart-discount coupon-<?php echo esc_attr( sanitize_title( $code ) ); ?> " >
2014-02-21 15:16:43 +00:00
< th >< ? php wc_cart_totals_coupon_label ( $coupon ); ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php echo esc_attr( wc_cart_totals_coupon_label( $coupon , false ) ); ?> " >< ? php wc_cart_totals_coupon_html ( $coupon ); ?> </td>
2013-08-14 20:00:34 +00:00
</ tr >
< ? php endforeach ; ?>
2015-03-10 16:43:02 +00:00
< ? php if ( WC () -> cart -> needs_shipping () && WC () -> cart -> show_shipping () ) : ?>
< ? php do_action ( 'woocommerce_cart_totals_before_shipping' ); ?>
< ? php wc_cart_totals_shipping_html (); ?>
< ? php do_action ( 'woocommerce_cart_totals_after_shipping' ); ?>
2016-03-10 12:26:49 +00:00
< ? php elseif ( WC () -> cart -> needs_shipping () && 'yes' === get_option ( 'woocommerce_enable_shipping_calc' ) ) : ?>
2015-03-10 16:57:43 +00:00
< tr class = " shipping " >
< th >< ? php _e ( 'Shipping' , 'woocommerce' ); ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php esc_attr_e( 'Shipping', 'woocommerce' ); ?> " >< ? php woocommerce_shipping_calculator (); ?> </td>
2015-03-10 16:57:43 +00:00
</ tr >
2015-03-10 16:43:02 +00:00
< ? php endif ; ?>
2013-08-14 20:00:34 +00:00
< ? php foreach ( WC () -> cart -> get_fees () as $fee ) : ?>
< tr class = " fee " >
< th >< ? php echo esc_html ( $fee -> name ); ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php echo esc_attr( $fee->name ); ?> " >< ? php wc_cart_totals_fee_html ( $fee ); ?> </td>
2013-08-14 20:00:34 +00:00
</ tr >
< ? php endforeach ; ?>
2017-12-15 13:39:35 +00:00
< ? php if ( wc_tax_enabled () && ! WC () -> cart -> display_prices_including_tax () ) :
2016-01-25 10:06:53 +00:00
$taxable_address = WC () -> customer -> get_taxable_address ();
2016-08-30 16:50:35 +00:00
$estimated_text = WC () -> customer -> is_customer_outside_base () && ! WC () -> customer -> has_calculated_shipping ()
2016-10-24 07:33:32 +00:00
? sprintf ( ' <small>' . __ ( '(estimated for %s)' , 'woocommerce' ) . '</small>' , WC () -> countries -> estimated_for_prefix ( $taxable_address [ 0 ] ) . WC () -> countries -> countries [ $taxable_address [ 0 ] ] )
2016-01-25 10:06:53 +00:00
: '' ;
2015-11-16 15:59:44 +00:00
if ( 'itemized' === get_option ( 'woocommerce_tax_total_display' ) ) : ?>
2013-09-23 15:10:09 +00:00
< ? php foreach ( WC () -> cart -> get_tax_totals () as $code => $tax ) : ?>
< tr class = " tax-rate tax-rate-<?php echo sanitize_title( $code ); ?> " >
2015-11-16 15:59:44 +00:00
< th >< ? php echo esc_html ( $tax -> label ) . $estimated_text ; ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php echo esc_attr( $tax->label ); ?> " >< ? php echo wp_kses_post ( $tax -> formatted_amount ); ?> </td>
2013-09-23 15:10:09 +00:00
</ tr >
< ? php endforeach ; ?>
< ? php else : ?>
< tr class = " tax-total " >
2015-11-16 15:59:44 +00:00
< th >< ? php echo esc_html ( WC () -> countries -> tax_or_vat () ) . $estimated_text ; ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php echo esc_attr( WC()->countries->tax_or_vat() ); ?> " >< ? php wc_cart_totals_taxes_total_html (); ?> </td>
2013-08-14 20:00:34 +00:00
</ tr >
2013-09-23 15:10:09 +00:00
< ? php endif ; ?>
2013-08-14 20:00:34 +00:00
< ? php endif ; ?>
< ? php do_action ( 'woocommerce_cart_totals_before_order_total' ); ?>
< tr class = " order-total " >
2015-03-10 16:57:43 +00:00
< th >< ? php _e ( 'Total' , 'woocommerce' ); ?> </th>
2016-03-08 13:41:34 +00:00
< td data - title = " <?php esc_attr_e( 'Total', 'woocommerce' ); ?> " >< ? php wc_cart_totals_order_total_html (); ?> </td>
2013-08-14 20:00:34 +00:00
</ tr >
< ? php do_action ( 'woocommerce_cart_totals_after_order_total' ); ?>
</ table >
2014-12-19 12:12:31 +00:00
< div class = " wc-proceed-to-checkout " >
< ? php do_action ( 'woocommerce_proceed_to_checkout' ); ?>
</ div >
2013-08-14 20:00:34 +00:00
< ? php do_action ( 'woocommerce_after_cart_totals' ); ?>
2014-09-22 16:31:03 +00:00
</ div >