Etsy Expands Payments Policy Globally; Instant Transfers Go Live for US Sellers
Reading Time: 3 minutesWhat’s changed Etsy has rolled out major updates to its Etsy Payments…
In Magento2, referring to the products’ form attributes and their options, get ‘render dynamically,’ means that as an admin you can add as many attributes and as many options to that product attribute as you want. This is handled by using the strategy of data and meta-data. Now the problem is if you create a custom attribute with 100 options then it will be hard for the user to select any particular one if it’s not sorted alphabetically. In this blog, we will explain how can you sort product attributes options alphabetically to make it user-friendly.
We are assuming that you already have an idea to create a custom module in Magento2. In Case you don’t, then no worries you can follow the below-mentioned steps-
Here we are going to use a plugin for extending the functionality of meta-data. But if you have no idea how to create a plugin you may check it on Magento2 dev-docs to get a brief idea about Magento2 plugins.
We assume that you already have a basic idea about Magento2 coding.
Write the below code in your Vendor\Module\etc\adminhtml\di.xml
<?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\Catalog\Ui\DataProvider\Product\Form\Modifier\Eav"> <plugin name="after_ui_eav_product_form_modifier" type="Vendor\Module\Plugin\Ui\DataProvider\Product\Form\Modifier\Eav" sortOrder="1" disabled="false"/> </type> </config>
Now create a plugin file with the namespace
Vendor\Module\Plugin\Ui\DataProvider\Product\Form\Modifier\Eav, and add the below code.
<?php namespace Vendor\Module\Plugin\Ui\DataProvider\Product\Form\Modifier; use Magento\Catalog\Ui\DataProvider\Product\Form\Modifier\Eav; /** * Class Eav */ class Eav { const ATTRIBUTE_TO_SORT = ['xyz_attr1' ,'xyz_attr2']; /** * Initial meta setup * * @param Eav $subject * @param array $result * @return array */ public function afterSetupAttributeMeta(Eav $subject, $result){ if (isset($result['arguments']['data']['config']['code'])) { $code = $result['arguments']['data']['config']['code']; if (in_array($code, self::ATTRIBUTE_TO_SORT)){ if (isset($result['arguments']['data']['config']['options'])) { $options = &$result['arguments']['data']['config']['options']; usort($options, function($a, $b) { return $a['label'] > $b['label']; }); } } } return $result; } }
In this, we are using “usort” for the multi-select attribute options, so this code will sort only the multidimensional array, it will sort the array options by labels.
Reading Time: 3 minutesWhat’s changed Etsy has rolled out major updates to its Etsy Payments…
Reading Time: 2 minutesWhat’s changed Walmart has introduced a new Shipping Score metric within its…
Reading Time: 3 minutesWhat’s changed Amazon has announced an additional $35 billion investment in India…
Reading Time: 4 minutesAbout the Brand: 40ParkLane LLC Studio40ParkLane is a design-led print-on-demand brand created…
Reading Time: 3 minutesAbout the Company Brand Name: David Protein Industry: Health & Nutrition (Protein…
Reading Time: 3 minutesOnline retail spending in Germany is entering a renewed growth phase after…
Reading Time: 4 minutesTikTok Shop has released a comprehensive Beauty and Personal Care Products Policy,…
Reading Time: 4 minutesTikTok Shop has formally outlined comprehensive requirements for expiration date labeling and…
Reading Time: 3 minutesTikTok Shop is raising its sales commission for merchants across five active…
Reading Time: 11 minutesBy now you have seen your BFCM 2025 numbers. The harder question…
Reading Time: 3 minutesAbout the Brand Name: Vanity Slabs Inc Industry: Trading Slabs- Vanity Slabs…
Reading Time: 2 minutesAbout the Brand Name: Ramjet.com Industry: Automotive Parts & Accessories Location: United…
Reading Time: 2 minutesAmazon is rolling out strategic referral fee reductions across five major European…
Reading Time: 4 minutesQuick Summary: Scaling Lifestyle Powersports on eBay with CedCommerce Challenge: Zero marketplace…
Reading Time: 4 minutesTikTok has surpassed 460 million users across Southeast Asia, reinforcing its position…
Reading Time: 3 minuteseBay has released its final seller news update for 2025, with a…
Reading Time: 3 minutesAmazon has clarified its stance regarding speculation around a potential breakup between…
Reading Time: 4 minutesWalmart is accelerating its push into next-generation fulfillment by expanding its drone…
Reading Time: 4 minutesFaire, the fast-growing wholesale marketplace connecting independent retailers with emerging brands, has…
Reading Time: 4 minutesB2B buying in the United States is undergoing a fundamental behavioral shift…