How to add custom bulk action on the product listing page at the admin panel in Magento 2?
The beauty of Magento 2 is the flow of processing. With a few easy steps, we will see how we can add new action on the product grid page in the admin panel. Bulk actions are used to perform the operation on multiple products at the same time instead of an individual product. By default, Magento 2 provides bulk operations such as delete, change status, and update attributes. Let's see how we can add our custom action in the top left dropdown.
We need to create a new module. We will say it WebbyTroops_BulkCustomOptions. Create a new file on Magento 2 project directory at app/code/WebbyTroops/BulkCustomOptions/registration.php.
<?php
/**
* Copyright © 2022 WebbyTroops, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
\Magento\Framework\Component\ComponentRegistrar::register(
\Magento\Framework\Component\ComponentRegistrar::MODULE,
'WebbyTroops_BulkCustomOptions',
__DIR__
);
After the registration file, we need to create a module file in app/code/WebbyTroops/BulkCustomOptions/etc/module.xml.
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="WebbyTroops_BulkCustomOptions" setup_version="1.0.0">
<sequence>
<module name="Magento_Catalog"/>
</sequence>
</module>
</config>
The above steps are for registering our module with the Magento system. Now let's create our custom action on the product listing page. For that, we need to create a file at app/code/WebbyTroops/BulkCustomOptions/view/adminhtml/ui_component/product_listing.xml.
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<listingToolbar name="listing_top">
<massaction name="listing_massaction">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="com
Categories
Download The Free E-book & Launch Your Brand Strategically
Download The Free E-book & Launch Your Brand Strategically
Share this post