Jump to content

[TUTORIAL] Skip checkout steps


shacker

Recommended Posts

Many times our store has certain characteristics that do not require all the steps of the checkout. An example could be that we only have to have a store as a shipping method, and in that case we could eliminate that step of the checkout to save the user time when buying.

Another example could be that we only have "store payment" as the payment method. In that case, we can skip this step too.

To do this we must modify the file controllers / front / OrderController.php

checkout.thumb.jpg.6bf5587a1693193208b3c89720c355b5.jpg

The addStep lines are the ones that add checkout steps, commenting on them as shown in the image we can make those steps not required

For example, CheckoutPersonalInformationStep is to display the user info, CheckoutAddressesStep for the address, checkoutDeliveryStep for shipping, and CheckoutPaymentStep for the payment method. Just commenting on the step we want to remove is enough to make it disappear:


            / * -> addStep (new CheckoutPersonalInformationStep (
                $ this-> context,
                $ translator,
                $ this-> makeLoginForm (),
                $ this-> makeCustomerForm ()
            )) * /

Ideally, create an Override of the OrderController to avoid losing your changes. You can see more info here: http://doc.prestashop.com/display/PS16/Overriding+default+behaviors#Overridingdefaultbehaviors-Overridingacontroller

 

Source: https://catalogo-onlinersi.net/en/content/45-skip-steps-in-prestashop-checkout

Link to comment
Share on other sites

  • 3 years later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...