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
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
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.
If you are using child theme then it could be done easily.
STEPS:
1) Copy
form-checkout.php
fromwp-content->plugins->woocommerce->templates->checkout
and paste it insidewp-contentthemesyour_themewoocommercemyaccount
.2) Change this
to
NOTE: This solution works with only child theme.
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.
I hope my time and work sent in this issue works and fulfills you requirements.
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 44and 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 & Shipping', 'woocommerce' ); ?>
to<?php _e( 'Shipping & 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:
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">
if anyone is interested
in main.js in your theme ex: Leto: main.js (js/main.js)
//copying the shipping to billing
and in form-shipping.php (in your theme)
to have checkbox in copy shipping address to billing address