How To

MAGENTO 2: How to Change Default Active Tab on Admin Order View Page

Hello Magento Folks?,

How’s everything going on? Welcome back to the How-To series where I am going to help you all in solving Magento 2: How to change active tabs on the admin order view page with its codes. Don’t forget to go through the most recent blog published for learning How to Add Available Quantity Per Product in The Catalog On Magento 2.3

Introduction:

As we all know  Magento 2 provides order information in order to view a page on the admin side. Here mainly, Magento 2 distinguishes order information in different parts for e.g. order basic information, order invoices, order shipments, order credit memo, etc. And for that Magento 2 creates some tabs to differentiate order information and from all of them there is one tab known as “Information”, and this is by default active tab. But if we require to select any other tab as by default tab and not the “Information”. No Worries, the given below code of solution will help you to change the default active tab as per your requirement.

Steps to Code:

Step 1: First, we need to create  di.xml file at the following path,

app\code\Vendor\Extension\etc and add the below code.

<?xml version="1.0"?>

<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">

<type name="Magento\Backend\Block\Widget\Tabs">

        <plugin name="change_tab_selection_block" type="Vendor\Extension\Plugin\Block\Widget\Tabs" sortOrder="10" />

    </type>

</config>

Step 2: After that, we need to create a Tabs.php file inside the below path.

app\code\Vendor\Extension\Plugin\Block\Widget and add below code

<?php

namespace Vendor\Extension\Plugin\Block\Widget;

class Tabs 

{

  public function afterAddTab(\Magento\Backend\Block\Widget\Tabs $subject, $result)

  {

     $subject->setActiveTab("order_history"); // you can set any tab name here

     return $result;

  }

}

Step 3: Lastly, refresh the cache from the cache management option.

With the help of the above codes, you will be able to change the default tab to your required tab in Magento 2.

Over to You:

I hope there are no difficulties faced to you during the implementation of the above-given solution and in case any difficulties then feel free to contact our Support Team for further guidance. I hope the above solution helped if YES then do share with your Magento friends and also let us know your reviews regarding this solution in the comment section below.

Stay Home & Stay Safe – Happy Coding?

Click to rate this post!
[Total: 3 Average: 5]
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.?

Recent Posts

Magento 2: How to Save Custom Field Value to quote_address for Multi-Shipping Orders

Hello Magento Friends, In Magento 2, the checkout process allows customers to choose multiple shipping…

6 hours ago

Best Beginners Guide to Shopify Balance Account

If you are a Shopify admin, using a Shopify Balance Account for your business revenue…

6 hours ago

8 Best Social Login Apps for Shopify Store in 2024

Running an eCommerce business can be incredibly demanding, leaving entrepreneurs little time to focus on…

6 hours ago

Generating Thumbnails with Spatie Media Library in Laravel 11: A Step-by-Step Guide

Generating image thumbnails is a common requirement in web applications, especially when handling media-heavy content.…

1 day ago

Enhancing Web Application Security with Laravel’s Built-In Features

In today’s digital landscape, web application security is paramount. As a powerful PHP framework, Laravel…

2 days ago

Magento 2 Extensions Digest October 2024 (New Release & Updates)

October was an exciting month for MageComp! From significant updates across our Magento 2 extension…

2 days ago