I did it to move the order table in the checkout page to the top by adding the following code to the functions.php file, but the order heading text remains in the bottom in its original position:
add_filter( ‘woocommerce_ship_to_different_address_checked’, ‘__return_false’ );
remove_action( ‘woocommerce_checkout_order_review’, ‘woocommerce_order_review’, 20 );
add_action( ‘woocommerce_before_checkout_form’, ‘woocommerce_order_review’, 30 );
Any ideas to move the “Your order” heading text also?
Thank you