0x3d
0x3d

Reputation: 470

Handle carrier Prestashop

I want to create a new module for delivery methods in Prestashop 1.5.

Where user select my delivery method I want to call a php function that will comunicate with some other service.

I tried to create a new Carrier from admin panel: enter image description here

I need to know how to call a function when user make a order and my carier is selected.

I have small experience with Prestashop modules, I have written a payment processor but here I don't know hooks to handle shipping carrier.

I used "hookextraCarrier" to display a new carrier after all carriers but I can't make it to have a radio button.

Upvotes: 2

Views: 790

Answers (1)

PrestaShopDeveloper
PrestaShopDeveloper

Reputation: 3118

You can hook to "actionValidateOrder" and get the carrier id via $params['order]->id_carrier;

Upvotes: 1

Related Questions