File: /www/wwwroot/www.cytocare.cn/wp-content/themes/peakshops/inc/woocommerce/woocommerce-checkout.php
<?php
/**
* WooCommerce Checkout related functions
*
* @package WordPress
* @subpackage peakshops
* @since 1.0
* @version 1.0
*/
if ( ! thb_wc_supported() ) {
return;
}
if ( is_admin() ) {
return;
}
/* Checkout */
function thb_checkout_before_customer_details() {
echo '<div class="row"><div class="small-12 medium-8 columns thb-checkout-form-column">';
}
add_action(
'woocommerce_checkout_before_customer_details',
'thb_checkout_before_customer_details',
5
);
function thb_checkout_after_customer_details() {
echo '</div><div class="small-12 medium-4 columns">';
}
add_action(
'woocommerce_checkout_after_customer_details',
'thb_checkout_after_customer_details',
30
);
function thb_checkout_after_order_review() {
echo '</div></div>';
}
add_action(
'woocommerce_checkout_after_order_review',
'thb_checkout_after_order_review',
30
);