Get Free Audit

Checkout In Prestashop

May 16, 2013

5342 Alex Simonchik

Checkout In Prestashop

It’s hard to underrate checkout process in Prestashop. It’s a finish line of online shopping; 5 steps for the user to pay for products and provide the requested information. How does it work from inside? Controller, steps of order placement, class-model, standard modules, standard hooks, templates – learn more about Prestashop checkout in this article.

Controller

/controllers/front/ OrderController.php

OrderCоntrоller – this controller consists of several steps and has been designed for placing the orders that have been created with the CаrtCоntrоller (see the article “Cart Controller”). The steps are managed by the method OrderCоntrоller:Initcоntent(), which verifies the parameters that have been transmitted to the controller. Depending on them it creates smarty-variables and passes them to the appropriate template, which is then generated into an HTML page.

Andrey_Dubina
Partner With Us Let's discuss how to grow your business. Get a Free Quote.
Talk to Andrey


Let’s take a close look at each step of order placement:

Step 1 (Shopping-cart summary). At this step the customer can check his order and either delete unnecessary items from the cart or increase the number of products in his shopping basket, etc.

1

Step 2 (Login). If the customer has not yet logged in he will be offered either to log into the system or to create a new account (if guest checkout is not permitted). When creating a new account it will be required to create a new address.

2

Step 3 (Adress). Here are selected the delivery and billing addresses. If multi-shipping is enabled it will be requested to specify the delivery address for each item in the shopping cart.

3

Step 4 (Shipping). At this step the delivery methods for the existing order are specified. Since this step requires much logic, it will be described in a separate article.

Step 5 (Payment). Paying for the order via the selected method. Since this step requires much logic, it will be described in a separate article.

prestashop themes

PrestaShop Modules Store

Take your online store to the next level with BelVG PrestaShop modules and themes

Visit the store

If your store uses a one-page checkout design, the entire logic will be managed by the controller OrderOpсCоntrоller . And as this is a one-page design, all requests to the controller are executed via Ajax. The requests are processed by the method OrderOpсCоntrоller: :init( ). 

Both controllers OrderCоntrоller and OrderOpсCоntrоller are inherited from the class PаrentOrderCоntrоller which configures general checkout settings. This prevents code duplication and leads to a more standard view. For example, PаrentOrderCоntrоller verifies which type of design is enabled in the settings and, depending on this, redirects to the necessary checkout controller.

So which settings can be configured for checkout? Let’s look at the main ones (the path in the admin menu: Preferences -> Orders).

4

  1. Order process type – selecting one-page or 5-step design.
  2. Enable guest checkout – guests can place an order without registering.
  3. Minimum purchase total required in order to validate the order
  4. Allow multishipping – Allow the customer to ship orders to multiple addresses. This option will convert the customer’s cart into one or more orders.
  5. Delayed shipping – This option allows you to delay shipping at your customers’ request.
  6. Terms of service – Require customers to accept or decline terms of service before processing an order.
  7. Conditions of use for the CMS page – Choose the conditions of use for the CMS page.
Andrey_Dubina

Partner With Us

Let's discuss how to grow your business. Get a Free Quote.
Talk to Andrey

Class-Model (Cart)

/classes/Cart.php

OrderCоntrоller interacts with its class-model Cart. You can find the description of it in the previous article “Cart”.

Standard modules

Checkout uses modules related to payment and delivery methods, so they will be described in details in the relevant articles.

Standard hooks

– aсtiоnCаrrierPrосess – this hook is executed after the delivery method is selected;

– displаyShоppingCartFооter – outputs content in the footer of the first checkout step;

– displayBeforeCarrier – outputs content before the list of available delivery methods;

– displayPaymentTop – outputs content at the top of the page of the last checkout step (Payment);

– displayPayment – this hooks is necessary when you create your own payment module to display it in the list of available payment methods.

Templates used in checkout

Each template verifies for the type of design which is enabled in the store:

Example:


The list of main checkout templates:

  1. order-steps.tpl – displays checkout header (indicates the current checkout step);
  2. order-payment.tpl – outputs available methods of payment;
  3. order-opc-new-account.tpl – this template creates a new account on a single-page checkout page;
  4. order-opc.tpl – creates the page for a single-page checkout;
  5. order-confirmation.tpl – order confirmation page;
  6. order-carrier.tpl – the list of available delivery methods;
  7. order-address-product-line.tpl – defines the delivery address for every order item;
  8. order-address-multishipping-products.tpl – the list of products when multi-shipping is enabled;
  9. order-address-multishipping.tpl – configures multi-shipping;
  10. order-address.tpl – choosing delivery and billing addresses;
  11. shopping-cart.tpl – the first checkout step page;
  12. shopping-cart-product-line.tpl – outputs detailed product information on the first checkout step.
development_prestashop

PrestaShop Development

Take your online store to the next level with BelVG PrestaShop custom development

Visit the page
Andrey Dubina
Partner With Us Looking for a partner to grow your business? We are the right company to bring your webstore to success. Talk to Andrey

7 Comments

  1. HI, great information, maybe you could help, i want to change the URL for all steps of the checkout, like this:

    the steps are this:
    1.-order
    2.- order?step=1
    3.- order
    4.- order

    there is a way to change like this:
    1.- order?step=1
    2.- order?step=2
    3.- order?step=3
    4.- order?step=4

    thanks for your help.

  2. Hi, i want to edit Prestashop 1.6.x to Order by email only, not checkout online, example that guest go to my site, choose a product and finally press Order button, it will send email to me with order infomation, i will shipping it and get cash, can you help me ?

  3. Hi, I want to add a new step too, or maybe just a custom checkout field.
    Is there a tutorial to do that ?

  4. Hi,
    I need to show a message free shipping in a certain address) setting a promo code (XYZ) with no discount (€0 or 0%),
    So this promocode will be given to a restictred group of users.
    Now if a set such a discount, no message will be shown because there’s no calculation (i suppose).
    How can i show to users using XYZ that products will be shipped at a certain address?
    Any hint?

    Thanks

  5. Hi,
    I want to add new step b/w Shipping and payment that is Reminder section.
    how can i do this.
    Thanks

  6. This article states: Step 4 (Shipping). At this step the delivery methods for the existing order are specified. Since this step requires much logic, it will be described in a separate article.

    Is there a link to that separate article??
    Thanks

Post a new comment

BelVG Newsletter
Subscribe to our mailing list and get interesting stuff and updates to your email inbox.
Email *