Editing Woocommerce Layout

How do I change the page layout of my design in Wordpress?

Illustration: http://i.stack.imgur.com/0bFhT.png enter image description here

This is what my checkout page looks like. (Image is cropped)

I want to place a blue box under the red and the green box is the blue box.
But I have no idea how to approach this.

I cannot find the file that defines the positions.

+3


source to share


1 answer


File form-checkout.php https://github.com/woothemes/woocommerce/blob/master/templates/checkout/form-checkout.php The

codes that define the highlighted fields are:      

<h3 id="order_review_heading"><?php _e( 'Your order', 'woocommerce' ); ?></h3>
<?php do_action( 'woocommerce_checkout_order_review' ); ?>

      



Move them as nicely.

+3


source







All Articles