PrestaShop Developer Conference
PrestaShop Developer Conference
November 6, 2024
Let's talk code, commerce and open source.

Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.

You might want to look at the current version, PrestaShop 8. Read the current version of the documentation

View all carriers

This page can be reached by visiting Shipping -> Carriers in the admin panel. It displays a list of all carriers that have been added and allow to add, edit or delete them. The related code can be found in following locations:

Once opened, the page will show following blocks:

Page blocks

Showcase card

Showcase card

The name of this card is ShowcaseCard::CARRIERS_CARD and it can be closed by clicking the x button in the top right corner. The card is displayed only once per employee.

You can check the status of this card by querying the GetShowcaseCardIsClosed query.

Carriers grid

Carriers grid

Show list of carriers with the ability to filter, sort them and perform actions like activating, deactivating, editing or deleting them.

The related code can be found in following locations:

As you can notice, carrier can change its ID when it is edited. In fact, if you edit a carrier that is already associated with an order, the carrier ID will change automatically.