Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #845970
    Anonymous

    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 selection

    what 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 help

    #847771

    Hey 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 Torvik

    #882621

    Hey, I have the exact same question. Did you solve it already?

    #883682

    Hi trabisafari,

    Could you post a link to your site so that we can have a closer look please?

    Best regards,
    Rikard

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.