2017-02-11 09:44:17 +00:00
< ? php
/**
* Pay for order form
*
* This template can be overridden by copying it to yourtheme / woocommerce / checkout / form - pay . php .
*
* 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 .
*
2018-06-06 02:06:47 +00:00
* @ see https :// docs . woocommerce . com / document / template - structure /
* @ package WooCommerce / Templates
2019-04-22 16:38:43 +00:00
* @ version 3.6 . 1
2017-02-11 09:44:17 +00:00
*/
2018-06-06 02:06:47 +00:00
defined ( 'ABSPATH' ) || exit ;
2017-02-11 09:44:17 +00:00
2018-06-06 02:06:47 +00:00
$totals = $order -> get_order_item_totals ();
2017-02-11 09:44:17 +00:00
?>
< form id = " order_review " method = " post " >
< table class = " shop_table " >
< thead >
< tr >
2018-03-22 18:56:28 +00:00
< th class = " product-name " >< ? php esc_html_e ( 'Product' , 'understrap' ); ?> </th>
< th class = " product-quantity " >< ? php esc_html_e ( 'Qty' , 'understrap' ); ?> </th>
< th class = " product-total " >< ? php esc_html_e ( 'Totals' , 'understrap' ); ?> </th>
2017-02-11 09:44:17 +00:00
</ tr >
</ thead >
< tbody >
2018-03-22 20:06:19 +00:00
< ? php if ( count ( $order -> get_items () ) > 0 ) : ?>
2017-02-11 09:44:17 +00:00
< ? php foreach ( $order -> get_items () as $item_id => $item ) : ?>
< ? php
2018-03-22 19:56:16 +00:00
if ( ! apply_filters ( 'woocommerce_order_item_visible' , true , $item ) ) {
continue ;
}
2017-02-11 09:44:17 +00:00
?>
< tr class = " <?php echo esc_attr( apply_filters( 'woocommerce_order_item_class', 'order_item', $item , $order ) ); ?> " >
< td class = " product-name " >
< ? php
2018-03-22 20:07:29 +00:00
echo apply_filters ( 'woocommerce_order_item_name' , esc_html ( $item -> get_name () ), $item , false ); // @codingStandardsIgnoreLine
2017-02-11 09:44:17 +00:00
2018-03-22 20:08:29 +00:00
do_action ( 'woocommerce_order_item_meta_start' , $item_id , $item , $order , false );
wc_display_item_meta ( $item );
do_action ( 'woocommerce_order_item_meta_end' , $item_id , $item , $order , false );
2017-02-11 09:44:17 +00:00
?>
</ td >
2018-03-22 20:09:08 +00:00
< td class = " product-quantity " >< ? php echo apply_filters ( 'woocommerce_order_item_quantity_html' , ' <strong class="product-quantity">' . sprintf ( '× %s' , esc_html ( $item -> get_quantity () ) ) . '</strong>' , $item ); ?> </td><?php // @codingStandardsIgnoreLine ?>
2018-03-22 19:42:38 +00:00
< td class = " product-subtotal " >< ? php echo $order -> get_formatted_line_subtotal ( $item ); ?> </td><?php // @codingStandardsIgnoreLine ?>
2017-02-11 09:44:17 +00:00
</ tr >
< ? php endforeach ; ?>
< ? php endif ; ?>
</ tbody >
< tfoot >
2018-06-06 02:06:47 +00:00
< ? php if ( $totals ) : ?>
2017-02-11 09:44:17 +00:00
< ? php foreach ( $totals as $total ) : ?>
< tr >
2018-03-22 19:42:38 +00:00
< th scope = " row " colspan = " 2 " >< ? php echo $total [ 'label' ]; ?> </th><?php // @codingStandardsIgnoreLine ?>
< td class = " product-total " >< ? php echo $total [ 'value' ]; ?> </td><?php // @codingStandardsIgnoreLine ?>
2017-02-11 09:44:17 +00:00
</ tr >
< ? php endforeach ; ?>
< ? php endif ; ?>
</ tfoot >
</ table >
< div id = " payment " >
< ? php if ( $order -> needs_payment () ) : ?>
< ul class = " wc_payment_methods payment_methods methods " >
< ? php
2018-03-22 20:12:48 +00:00
if ( ! empty ( $available_gateways ) ) {
foreach ( $available_gateways as $gateway ) {
wc_get_template ( 'checkout/payment-method.php' , array ( 'gateway' => $gateway ) );
2017-02-11 09:44:17 +00:00
}
2018-03-22 20:12:48 +00:00
} else {
echo '<li class="woocommerce-notice woocommerce-notice--info woocommerce-info">' . apply_filters ( 'woocommerce_no_available_payment_methods_message' , __ ( 'Sorry, it seems that there are no available payment methods for your location. Please contact us if you require assistance or wish to make alternate arrangements.' , 'understrap' ) ) . '</li>' ; // @codingStandardsIgnoreLine
}
2017-02-11 09:44:17 +00:00
?>
</ ul >
< ? php endif ; ?>
< div class = " form-row " >
< input type = " hidden " name = " woocommerce_pay " value = " 1 " />
< ? php wc_get_template ( 'checkout/terms.php' ); ?>
< ? php do_action ( 'woocommerce_pay_order_before_submit' ); ?>
2018-03-22 19:04:34 +00:00
< ? php echo apply_filters ( 'woocommerce_pay_order_button_html' , '<button type="submit" class="btn btn-primary" id="place_order" value="' . esc_attr ( $order_button_text ) . '" data-value="' . esc_attr ( $order_button_text ) . '">' . esc_html ( $order_button_text ) . '</button>' ); // @codingStandardsIgnoreLine ?>
2017-02-11 09:44:17 +00:00
< ? php do_action ( 'woocommerce_pay_order_after_submit' ); ?>
2018-06-06 02:06:47 +00:00
< ? php wp_nonce_field ( 'woocommerce-pay' , 'woocommerce-pay-nonce' ); ?>
2017-02-11 09:44:17 +00:00
</ div >
</ div >
</ form >