Answer the question
In order to leave comments, you need to log in
How to do normal woocommerce checkout?
How to do normal woocommerce checkout? The bottom line is that in Woocommerce, by default, it is in 1 place when placing an order, entering customer data, full name, address, etc., then select a delivery method, and a payment method. Tell me some plugin that will allow you to do this: 1. a person simply indicates his locality, then he is asked to choose delivery, then payment, and only then enter the rest of the data (name, address, etc.).
Answer the question
In order to leave comments, you need to log in
In Woo, checkout is arranged like this -
you have a "Checkout" page, on which the checkout component is displayed using the [woocommerce_checkout] shortcode. You can see this by opening this page in the admin panel.
The checkout component is "assembled" from several php files. They are located in the plugin directory - /wp-content/plugins/woocommerce/templates/checkout. There are more than 10 files, each of which is responsible for its own "task"
How you display data fields, in what order and in what composition, you need to edit in one or more files. In your case, you need to look at the form-billing.php and form-checkout.php files. Maybe some more, it happens in different ways.
Important! In the plugin directory itself, the files are not correct!. They may be overwritten when the plugin is updated. And yes, it is generally not accepted to do so. You need to create a woocommerce directory in the root of your theme, in it a checkout subdirectory and copy files from /wp-content/plugins/woocommerce/templates/checkout into it. And already there to rule.
How and what to edit specifically - here the question is always individual. Therefore, it is difficult to say whether there is a plugin for your task. We usually do this manually.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question