remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
add_action( 'woocommerce_before_checkout_form', 'prefix_wc_order_review_heading', 3 );
add_action( 'woocommerce_before_checkout_form', 'woocommerce_order_review', 4 );
/**
* Add a heading for order review on checkout page.
* This replaces the heading added by WooCommerce since order review is moved to the top of the checkout page.
*/
function prefix_wc_order_review_heading() {
echo '<h3>Your Order</h3>';
}
2条答案
按热度按时间8iwquhpp1#
这是可行的:
7d7tgy0s2#
移动审查表单不会自动移动
Your Order
标题。为了隐藏现有的
Your Order
标题(以及信用卡表单的一些间距),我将其添加到style.css中