How To

How to Get Tracking Information From Shipment in Magento 2

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.

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.

<?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

<?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 ?

Click to rate this post!
[Total: 7 Average: 4.7]
Dhiren Vasoya

Dhiren Vasoya is a Director and Co-founder at MageComp, Passionate 🎖️ Certified Magento Developer👨‍💻. He has more than 9 years of experience in Magento Development and completed 850+ projects to solve the most important E-commerce challenges. He is fond❤️ of coding and if he is not busy developing then you can find him at the cricket ground, hitting boundaries.🏏

View Comments

Recent Posts

How to Delete Product Variant in a Shopify Remix App using GraphQL Mutations?

Managing a Shopify store efficiently involves keeping your product catalog organized. This includes removing outdated…

5 hours ago

6 Innovative Tools Revolutionizing E-Commerce Operations

E-commerce has transformed the way consumers shop for products and services and interact with businesses.…

2 days ago

How Upcoming Cookie Changes Will Affect Your E-commerce Website?

The e-commerce world is constantly in flux. New tech and strategies emerge daily to help…

2 days ago

Magento 2: How to Add Header and Footer in Checkout

Hello Magento Friends, In today’s blog, we will discuss adding a header and footer to…

3 days ago

Understanding Flexbox Layout in React Native

Hello React Native Friends, Building a visually appealing and responsive mobile app is crucial in…

5 days ago

HYVÄ Themes Releases: 1.3.6 & 1.3.7 – What’s New

We have brought exciting news for Magento store owners. Hyvä Themes recently released 1.3.6 and…

5 days ago