Amazon product research in 2026: TikTok discovery, Amazon query data, and AI validation
Reading Time: 16 minutes How to find, quantify, and validate winning Amazon products? Amazon product…
In Magento 2 UI grid, sometimes when data-provider is passed in the XML file and we have to add the filter of store switcher, it doesn’t works,because when Magento call the collection of grid via ajax it use another controller(default -> mui/index/render) and it won’t have the parameter same as the previous URL, so to pass these parameters to new URL we can follow the below mentioned steps.
First add custom key, a filter_url_params section in the data-provider UI grid, as shown:
<dataSource name="driver_listing_data_source"> <argument name="dataProvider" xsi:type="configurableObject"> <argument name="class" xsi:type="string">MageNative\MobiDelivery\Ui\DataProvider\DriverDataProvider</argument> <argument name="name" xsi:type="string">driver_listing_data_source</argument> <argument name="primaryFieldName" xsi:type="string">id</argument> <argument name="requestFieldName" xsi:type="string">id</argument> <argument name="data" xsi:type="array"> <item name="config" xsi:type="array"> <item name="component" xsi:type="string">Magento_Ui/js/grid/provider</item> <item name="update_url" xsi:type="url" path="mui/index/render"/> <item name="storageConfig" xsi:type="array"> <item name="indexField" xsi:type="string">id</item> <item name="dataScope" xsi:type="string">store_id</item> </item> <item name="filter_url_params" xsi:type="array"> <item name="store" xsi:type="string">*</item> </item> </item> </argument> </argument> </dataSource>
In the second step, add the ‘$’ sign, this->prepares updateUrl(); in the __construct(…).
After that add the first add custom key below the filter_url_params section in the data-provider UI grid, as shown
/** * @return void */ protected function prepareUpdateUrl() { if (!isset($this->data['config']['filter_url_params'])) { return; } foreach ($this->data['config']['filter_url_params'] as $paramName => $paramValue) { if ('*' == $paramValue) { $paramValue = $this->request->getParam($paramName); } if ($paramValue) { $this->data['config']['update_url'] = sprintf( '%s%s/%s/', $this->data['config']['update_url'], $paramName, $paramValue ); $this->addFilter( $this->filterBuilder->setField($paramName)->setValue($paramValue)->setConditionType('eq')->create() ); } } }
Now in the end, as a conclusion, this process will help you to add another filter like store-switcher from outside the grid filters.
Reading Time: 16 minutes How to find, quantify, and validate winning Amazon products? Amazon product…
Reading Time: 2 minutes Amazon is rolling out a significant update that will directly impact…
Reading Time: 3 minutes Ulta Beauty is preparing to launch a curated storefront on TikTok…
Reading Time: 2 minutes Until now, falling below the 90% OTDR (On-time Delivery Requirement) could…
Reading Time: 5 minutes Amazon has formally expanded its Multi-Channel Fulfillment (MCF) operations in Europe…
Reading Time: 4 minutes Amazon has announced that Sponsored Products prompts and Sponsored Brands prompts…
Reading Time: 4 minutes Amazon has expanded access to its healthcare-focused AI assistant, Health AI,…
Reading Time: 4 minutes Amazon has officially launched its Spring Deal Days shopping event, offering…
Reading Time: 4 minutes eBay UK has announced a new partnership with global embedded finance…
Reading Time: 4 minutes TikTok Shop has officially launched its first-ever Fine Art category, marking…
Reading Time: 2 minutes eBay has temporarily paused international sales from the United States to…
Reading Time: 3 minutes Walmart Marketplace has expanded its Review Accelerator program with a new…
Reading Time: 3 minutes A significant policy change is coming to Amazon Wish Lists that…
Reading Time: 3 minutes A major shift is emerging in how Gen Z discovers and…
Reading Time: 4 minutes Social commerce is no longer confined to the platform where discovery…
Reading Time: 3 minutes eBay has released its U.S. 2026 Marketing Trends Calendar, a data-backed…
Reading Time: 4 minutes U.S. eCommerce is entering a new phase of structural expansion, with…
Reading Time: 4 minutes eBay has introduced on-site tracking support for orders delivered through seller-owned…
Reading Time: 4 minutes eBay has agreed to acquire Depop from Etsy in an all-cash…
Reading Time: 3 minutes For over a decade, Walmart defined retail scale. In 2025, that…