Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Woocommerce checkout page show shipping address first then billing address?

In checkout page of Woocommerce i need to change functionality of address means first i need shipping address fields then billing address fields.

Billing is shown first and then shipping shown if checkbox checked like below here see image.

Billing address first

enter image description here

now i need to change it like shipping address show first when i check check box it show me billing address. see below image.

Shipping address first

enter image description here

i need this change without changing any woocommerce file means in theme folder also validation and jquery effect is also needed.

can any one plz help me to make it??

advance thanks

code snippets: this is not solution so plz do not write this because it change place not functionality and check box. plz see screenshot that i post.

Billing address first

<?php do_action( 'woocommerce_checkout_billing' ); ?>
<?php do_action( 'woocommerce_checkout_shipping' ); ?>

Shipping address first

<?php do_action( 'woocommerce_checkout_shipping' ); ?>
<?php do_action( 'woocommerce_checkout_billing' ); ?>

still this question is unsolved, jquery is not good solution for this because checkout run as ajax and validation also. if any one have good solution then provide so other can help from here.

like image 260
Mukesh Panchal Avatar asked Jun 30 '15 11:06

Mukesh Panchal


People also ask

Does my billing address have to match shipping address?

For credit card verification you must enter your billing address exactly as it appears on your credit card statement. The shipping address however does not need to match your billing or credit card address.

What happens when shipping address and billing address are different?

The key difference between a billing address and a shipping address is this: The shipping address calculates shipping costs and delivers the product to customers. The billing address verifies that the customer is an authorized user of the purchasing credit card.


3 Answers

If you are using child theme then it could be done easily.

STEPS:

1) Copy form-checkout.php from wp-content->plugins->woocommerce->templates->checkout and paste it inside wp-content\themes\your_theme\woocommerce\myaccount.

2) Change this

<div class="col2-set" id="customer_details">
     <div class="col-1">
          <?php do_action( 'woocommerce_checkout_billing' ); ?>
     </div>

      <div class="col-2">
           <?php do_action( 'woocommerce_checkout_shipping' ); ?>
       </div>
</div>

to

<div class="col2-set" id="customer_details">
     <div class="col-1">
          <?php do_action( 'woocommerce_checkout_shipping' ); ?>    
     </div>

      <div class="col-2">
           <?php do_action( 'woocommerce_checkout_billing' ); ?>               
       </div>
</div>

NOTE: This solution works with only child theme.

like image 190
Shravan Sharma Avatar answered Oct 19 '22 14:10

Shravan Sharma


Your requirement was unique,challenging and tricky too. So tried a code to achieve the purpose.

To achieve this kind of functionality have done all the coding in jQuery so make sure you try the same in console first and then after sucessful working of the same add the code in any js which loads on checkout page or add your on js for checkout page.

jQuery('.shipping_address').css('display','block');

var bigHtml = jQuery(".woocommerce-billing-fields").children().not("h3, .create-account").detach();
var smallHtml = jQuery('.shipping_address').detach();
jQuery('.woocommerce-billing-fields').append(smallHtml);
jQuery('#order_comments_field').before(bigHtml);

jQuery('.woocommerce-billing-fields h3').text('Shipping Details');
jQuery('h3#ship-to-different-address').replaceWith('<h3 id="ship-to-billing-different-address"><label for="ship-to-billing-different-address-checkbox" class="checkbox">Ship to billing address?</label><input id="ship-to-billing-different-address-checkbox" class="input-checkbox" name="ship_to_different_billing_address" value="1" type="checkbox"></h3>');
jQuery(".woocommerce-shipping-fields").children().not("h3,#order_comments_field").hide();

jQuery("#ship-to-billing-different-address-checkbox").click(function(event) {
    if (jQuery(this).is(":checked"))
        jQuery(".woocommerce-shipping-fields").children().not("h3,#order_comments_field").show();
    else
        jQuery(".woocommerce-shipping-fields").children().not("h3,#order_comments_field").hide();
});

I hope my time and work sent in this issue works and fulfills you requirements.

like image 40
Domain Avatar answered Oct 19 '22 13:10

Domain


If you already know how to use the woocommerce templates then the easiest way to make this happen without having to rework all the backend code and not having to rewrite jquery is by making copies of three woocommerce templates for modification. This is for modifications to the default woocommerce templates.

checkout > form-checkout.php

checkout > form-billing.php

checkout > form-shipping.php

Changes to make on each template:

checkout > form-checkout.php

move <?php do_action( 'woocommerce_checkout_billing' ); ?> on line 40 to line 44 and move <?php do_action( 'woocommerce_checkout_shipping' ); ?> on line 44 to line 40.

Now on the other two templates there will be some code swapping.

from checkout > form-billing.php

on line 29 change <?php _e( 'Billing &amp; Shipping', 'woocommerce' ); ?> to <?php _e( 'Shipping &amp; Billing', 'woocommerce' ); ?>

on line 33 change <?php _e( 'Billing details', 'woocommerce' ); ?> to <?php _e( 'Shipping details', 'woocommerce' ); ?>

This is where the swapping of code comes in:

now cut lines 27 through 35 and paste it into checkout > form-shipping.php on line 25. Do not loose your place on lines on checkout > form-shipping.php you will need to cut lines 25 through 33 and paste it into checkout > form-billing.php on line 27.

NOTE: this exchange of code on both templates

should be above this <?php do_action( 'woocommerce_before_checkout_billing_form', $checkout ); ?> on checkout > form-billing.php template and above <?php do_action( 'woocommerce_before_checkout_shipping_form', $checkout ); ?> on checkout > form-shipping.php template.

Now from checkout > form-billing.php cut lines 55 through 82 and paste in checkout > form-shipping.php on line 77.

Now from checkout > form-shipping.php cut lines 52 through 54 and paste in checkout > form-billing.php on line 53. This must be between what is on line 52 and 53 of the default template.

Final step would be to change the text in the input for the checkbox that should now be on checkout > form-billing.php line 31 if you followed this strictly.

You can copy and replace line 31 with the following:

<input id="ship-to-different-address-checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" <?php checked( apply_filters( 'woocommerce_ship_to_different_address_checked', 'shipping' === get_option( 'woocommerce_ship_to_destination' ) ? 1 : 0 ), 1 ); ?> type="checkbox" name="ship_to_different_address" value="1" /> <span><?php _e( 'Bill to a different address?', 'woocommerce' ); ?></span>

Last note about the woocommerce jquery that makes the fields appear from the checkbox

The jquery is working with the following element which should now be on checkout > form-billing.php line 35. <div class="shipping_address">

like image 24
Rudy Lister Avatar answered Oct 19 '22 15:10

Rudy Lister