2013-08-14 20:00:34 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* Shipping Methods Display
2013-08-14 20:00:34 +00:00
*
* In 2.1 we show methods per package . This allows for multiple methods per order if so desired .
*
2015-11-03 13:31:20 +00:00
* This template can be overridden by copying it to yourtheme / woocommerce / cart / cart - shipping . 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
2017-09-08 16:41:46 +00:00
* @ version 3.2 . 0
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
?>
2015-03-10 16:43:02 +00:00
< tr class = " shipping " >
2015-12-16 13:00:16 +00:00
< th >< ? php echo wp_kses_post ( $package_name ); ?> </th>
< td data - title = " <?php echo esc_attr( $package_name ); ?> " >
< ? php if ( 1 < count ( $available_methods ) ) : ?>
2015-10-13 21:41:17 +00:00
< ul id = " shipping_method " >
< ? php foreach ( $available_methods as $method ) : ?>
< li >
2015-12-16 13:00:16 +00:00
< ? php
printf ( ' < input type = " radio " name = " shipping_method[%1 $d ] " data - index = " %1 $d " id = " shipping_method_%1 $d_ %2 $s " value = " %3 $s " class = " shipping_method " % 4 $s />
< label for = " shipping_method_%1 $d_ %2 $s " >% 5 $s </ label > ' ,
$index , sanitize_title ( $method -> id ), esc_attr ( $method -> id ), checked ( $method -> id , $chosen_method , false ), wc_cart_totals_shipping_method_label ( $method ) );
do_action ( 'woocommerce_after_shipping_rate' , $method , $index );
?>
2015-10-13 21:41:17 +00:00
</ li >
< ? php endforeach ; ?>
</ ul >
2015-12-16 13:00:16 +00:00
< ? php elseif ( 1 === count ( $available_methods ) ) : ?>
< ? php
2015-12-17 10:15:58 +00:00
$method = current ( $available_methods );
printf ( '%3$s <input type="hidden" name="shipping_method[%1$d]" data-index="%1$d" id="shipping_method_%1$d" value="%2$s" class="shipping_method" />' , $index , esc_attr ( $method -> id ), wc_cart_totals_shipping_method_label ( $method ) );
do_action ( 'woocommerce_after_shipping_rate' , $method , $index );
2015-12-16 13:00:16 +00:00
?>
2017-09-08 13:54:15 +00:00
< ? php elseif ( WC () -> customer -> has_calculated_shipping () ) : ?>
< ? php echo apply_filters ( is_cart () ? 'woocommerce_cart_no_shipping_available_html' : 'woocommerce_no_shipping_available_html' , wpautop ( __ ( 'There are no shipping methods available. Please ensure that your address has been entered correctly, or contact us if you need any help.' , 'woocommerce' ) ) ); ?>
< ? php elseif ( ! is_cart () ) : ?>
< ? php echo wpautop ( __ ( 'Enter your full address to see shipping costs.' , 'woocommerce' ) ); ?>
2015-03-10 16:43:02 +00:00
< ? php endif ; ?>
2013-08-14 20:00:34 +00:00
2015-03-10 16:43:02 +00:00
< ? php if ( $show_package_details ) : ?>
2015-12-16 13:00:16 +00:00
< ? php echo '<p class="woocommerce-shipping-contents"><small>' . esc_html ( $package_details ) . '</small></p>' ; ?>
2015-03-10 16:43:02 +00:00
< ? php endif ; ?>
2017-04-17 15:35:33 +00:00
< ? php if ( ! empty ( $show_shipping_calculator ) ) : ?>
2015-03-10 16:43:02 +00:00
< ? php woocommerce_shipping_calculator (); ?>
< ? php endif ; ?>
</ td >
</ tr >