shipping rate

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
3 anos atrás
I get shipping rate from third party..
the third party name is appear in checkout cart but rate still 0.00 (Zero).
What is the issue?

Thank you.
3 anos atrás
Make sure you don't have any "free shipping" enabled
  - Product  (if all products are 'free' shipping the cart is free shipping)
  - customer role gets free shipping
  - free over $X
  - discount (applied to shipping)
3 anos atrás
Thank you.
Where can I request shipping service after order complete?

Thank you.
3 anos atrás
RE:  "request shipping service after order complete"
I don't understand your question.
Shipping service/method selection happens during checkout; the customer selects the service.  Then the final page confirms the order.  If you are asking how to Edit the Shipping method as an admin, you can do that on the admin edit Order page.
3 anos atrás
I want to trigger pick up service after order complete, automaticly after client pay for his order successful and complete order from user interface.

Thank you.
3 anos atrás
Clarify "trigger pick up service "
3 anos atrás
Send request to third party to pick up packages.

Thank you.
3 anos atrás
Shipping Provider plugins in nopCommerce typically just get (show) methods/rates.  The store owner needs to arrange the actual shipment including scheduling pickup.  If you want shipment/pickup to be automated, then you may need to use a service/plugin like ShipStation.
3 anos atrás
Yes I want shipment/pickup to be automated, I develop plugin Like ShipStation, I get rate but I don't know how can I invoke pickup service automated after customer complete order.

I can see this action in ShipStation controller, Is it invoke after customer complete order?

        public IActionResult Webhook()
        {
          
        }


Thank you
3 anos atrás
ShipStation uses webhook because it's an external service.  In your case you probably just need to set up your shipment in the OrderPaid event handler.
public partial class EventConsumer :    IConsumer<OrderPaidEvent>
...
    public void HandleEvent(OrderPaidEvent orderPaidEvent)
...
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.