Hello Magento Folks? ,
How are you doing? Today I am here with yet another useful topic How to Get Tracking Information From Shipment in Magento 2. Look at our previously released blog, How to Add Dynamic Link to Footer in Magento 2 if you skipped out.
Contents
Introduction
Customer experience has become the central point for the E-commerce industry. The customers’ journey to your store starts by examining the product to purchasing it and then receiving the product. After the order placement, it is very essential to stay connected with the customer by providing information about their order like shipment status of the product, delivery date, and the reason for the delay. This will help to build the trust of the customers and result in improved user experience.
Magento 2 provides the feature to notify tracking information to the customers as well as the store owner. Let’s get rolling!
Steps to Get Tracking Information From Shipment in Magento 2
By the following code, you will be able to Get Tracking Information From Shipment in Magento 2. It can be done by event-observer as shown below:
Step 1: First create event.xml
Path- app\code\Vendor\Extension\etc\events.xml
Now enter the following code.
1 2 3 4 5 6 7 8 |
<?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="sales_order_shipment_save_after"> <observer name="track_shipment" instance="Vendor\Extension\Observer\Shipment" /> </event> </config> |
Step 2: Then enter the following code in Observer.
Path – app\code\Vendor\Extension\Observer\Shipment.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<?php namespace Vendor\Extension\Observer; use Magento\Framework\Event\ObserverInterface; class Shipment implements ObserverInterface { public function execute(\Magento\Framework\Event\Observer $observer) { try { $shipment = $observer->getEvent()->getShipment(); $tracksCollection = $shipment->getTracksCollection(); foreach ($tracksCollection->getItems() as $track) { $track_number = $track->getTrackNumber(); $carrier_name = $track->getTitle(); } } catch (\Exception $e) { } } } ?> |
You are done!
Closing Words:
Hope, now you know How to Get Tracking Information From Shipment in Magento 2. We recommend you take advantage of Magento 2 Order Tracking Extension to enhance your store performance and provide greater customer services. In case any complications let me know in the comment area and I will get back to you. If you find it worthful, share it with your Magento pals. Stay safe and stay tuned so that you do not miss any important functionality for your store!
Happy Coding ?
Nice guide to track shipment information in magento 2. thank you for sharing the valuable blog.