2013-08-14 20:00:34 +00:00
< ? php
/**
* Shipping Methods Display
*
* In 2.1 we show methods per package . This allows for multiple methods per order if so desired .
*
* @ author WooThemes
* @ package WooCommerce / Templates
* @ version 2.1 . 0
*/
2014-09-22 16:31:03 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-08-14 20:00:34 +00:00
?>
< tr class = " shipping " >
< th >< ? php
if ( $show_package_details ) {
printf ( __ ( 'Shipping #%d' , 'woocommerce' ), $index + 1 );
} else {
_e ( 'Shipping and Handling' , 'woocommerce' );
}
?> </th>
< td >
< ? php if ( ! empty ( $available_methods ) ) : ?>
< ? php if ( 1 === count ( $available_methods ) ) :
$method = current ( $available_methods );
echo wp_kses_post ( wc_cart_totals_shipping_method_label ( $method ) ); ?>
2013-12-29 09:31:44 +00:00
< input type = " hidden " name = " shipping_method[<?php echo $index ; ?>] " data - index = " <?php echo $index ; ?> " id = " shipping_method_<?php echo $index ; ?> " value = " <?php echo esc_attr( $method->id ); ?> " class = " shipping_method " />
2013-08-14 20:00:34 +00:00
2014-01-23 04:36:24 +00:00
< ? php elseif ( get_option ( 'woocommerce_shipping_method_format' ) === 'select' ) : ?>
2013-08-14 20:00:34 +00:00
2013-12-29 09:31:44 +00:00
< select name = " shipping_method[<?php echo $index ; ?>] " data - index = " <?php echo $index ; ?> " id = " shipping_method_<?php echo $index ; ?> " class = " shipping_method " >
2013-08-14 20:00:34 +00:00
< ? php foreach ( $available_methods as $method ) : ?>
< option value = " <?php echo esc_attr( $method->id ); ?> " < ? php selected ( $method -> id , $chosen_method ); ?> ><?php echo wp_kses_post( wc_cart_totals_shipping_method_label( $method ) ); ?></option>
< ? php endforeach ; ?>
</ select >
< ? php else : ?>
< ul id = " shipping_method " >
< ? php foreach ( $available_methods as $method ) : ?>
< li >
2013-12-29 09:31:44 +00:00
< input type = " radio " name = " shipping_method[<?php echo $index ; ?>] " data - index = " <?php echo $index ; ?> " id = " shipping_method_<?php echo $index ; ?>_<?php echo sanitize_title( $method->id ); ?> " value = " <?php echo esc_attr( $method->id ); ?> " < ? php checked ( $method -> id , $chosen_method ); ?> class="shipping_method" />
2013-08-14 20:00:34 +00:00
< label for = " shipping_method_<?php echo $index ; ?>_<?php echo sanitize_title( $method->id ); ?> " >< ? php echo wp_kses_post ( wc_cart_totals_shipping_method_label ( $method ) ); ?> </label>
</ li >
< ? php endforeach ; ?>
</ ul >
< ? php endif ; ?>
< ? php elseif ( ! WC () -> customer -> get_shipping_state () || ! WC () -> customer -> get_shipping_postcode () ) : ?>
2014-04-23 13:30:45 +00:00
< ? php if ( is_cart () && get_option ( 'woocommerce_enable_shipping_calc' ) === 'yes' ) : ?>
2014-03-04 12:39:35 +00:00
< p >< ? php _e ( 'Please use the shipping calculator to see available shipping methods.' , 'woocommerce' ); ?> </p>
< ? php elseif ( is_cart () ) : ?>
2013-08-14 20:00:34 +00:00
2014-03-04 12:39:35 +00:00
< p >< ? php _e ( 'Please continue to the checkout and enter your full address to see if there are any available shipping methods.' , 'woocommerce' ); ?> </p>
2013-08-14 20:00:34 +00:00
< ? php else : ?>
< p >< ? php _e ( 'Please fill in your details to see available shipping methods.' , 'woocommerce' ); ?> </p>
< ? php endif ; ?>
< ? php else : ?>
< ? php if ( is_cart () ) : ?>
< ? php echo apply_filters ( 'woocommerce_cart_no_shipping_available_html' ,
2014-04-07 09:48:48 +00:00
'<div class="woocommerce-info"><p>' . __ ( 'There doesn‘t seem to be any available shipping methods. Please double check your address, or contact us if you need any help.' , 'woocommerce' ) . '</p></div>'
2013-08-14 20:00:34 +00:00
); ?>
< ? php else : ?>
< ? php echo apply_filters ( 'woocommerce_no_shipping_available_html' ,
2014-04-07 09:48:48 +00:00
'<p>' . __ ( 'There doesn‘t seem to be any available shipping methods. Please double check your address, or contact us if you need any help.' , 'woocommerce' ) . '</p>'
2013-08-14 20:00:34 +00:00
); ?>
< ? php endif ; ?>
< ? php endif ; ?>
< ? php if ( $show_package_details ) : ?>
< ? php
foreach ( $package [ 'contents' ] as $item_id => $values ) {
if ( $values [ 'data' ] -> needs_shipping () ) {
$product_names [] = $values [ 'data' ] -> get_title () . ' ×' . $values [ 'quantity' ];
}
}
echo '<p class="woocommerce-shipping-contents"><small>' . __ ( 'Shipping' , 'woocommerce' ) . ': ' . implode ( ', ' , $product_names ) . '</small></p>' ;
?>
< ? php endif ; ?>
</ td >
2013-12-29 09:31:44 +00:00
</ tr >