-
AuthorPosts
-
August 30, 2017 at 9:47 pm #845970Anonymous
I am using a filter to disable order notes like this:
add_filter(‘woocommerce_enable_order_notes_field’, ‘__return_false’);
On the order page I got now this layout:
customer details | empty column
————————————-
order table
————————————-
payment selectionwhat I need is:
customer details | order table
———————————-
payment selection<form name="checkout" ...> <div class="col2-set" id="customer_details"> <div class="col-1"> <div class="woocommerce-billing-fields"> <h3>Customer Details</h3> <div class="woocommerce-billing-fields__field-wrapper"> <!--form is showing here--> </div> </div> <div class="col-2"> <div class="woocommerce-shipping-fields"></div> <div class="woocommerce-additional-fields"> <!-- order_review_heading should be here --> <!-- order_review table should be here --> </div> </div> </div> <!--should be moved to above--> <h3 id="order_review_heading">Your order</h3> <div id="order_review" class="woocommerce-checkout-review-order"> <!--should be moved to above--> <table class="shop_table woocommerce-checkout-review-order-table"> ... </table> <!--should stay--> <div id="payment" class="woocommerce-checkout-payment"> ... <div class="form-row place-order">...</div> </div> </div> </form>
is there any way to get this done … a certain filter for example?
I appreciate your helpSeptember 4, 2017 at 3:22 pm #847771Hey dennis82m,
To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Best regards,
John TorvikNovember 28, 2017 at 12:17 pm #882621Hey, I have the exact same question. Did you solve it already?
December 1, 2017 at 5:18 am #883682 -
AuthorPosts
- You must be logged in to reply to this topic.