ProductLinksNavigator is a Magento 2 extension for enhanced admin product navigation. It is especially useful for merchants who want to simplify the process of navigating complex and custom product relationships.
Install via Composer:
composer require elnino/product-links-navigator
bin/magento module:enable ElNino_ProductLinksNavigator
bin/magento setup:upgrade
bin/magento cache:clean
Adds "View in Store" (frontend) links dropdown that navigates to all frontend store views where product is enabled and visible. Adds "Edit" (admin) link.
Lists all the parent products of the product you are currently editing.
- Add links to Grouped products grid and selection modal
- Add unit and integration testing
- Add links to Sales views (Order, Invoice etc.) products grid
If you have a custom product relation set up, you can allow adding the links for this relation's grid and modal. Extend
the data scopes array in your custom module adminhtml\di.xml
:
<type name="ElNino\ProductLinksNavigator\Ui\DataProvider\Product\Form\Modifier\RelatedProductLinks">
<arguments>
<argument name="dataScopeArray" xsi:type="array">
<item name="0" xsi:type="string">related</item>
<item name="1" xsi:type="string">crosssell</item>
<item name="2" xsi:type="string">upsell</item>
<item name="3" xsi:type="string">your_custom_scope</item> <!-- Add your custom scope here -->
</argument>
</arguments>
</type>
The module currently lists all the existing parents of Configurable, Grouped and Bundle types. If you have a custom
product type that serves as a parent, you can modify the implementation of parent product retrieval in
\ElNino\ProductLinksNavigator\Helper\ParentProductHelper::getParentProducts
with a plugin.
- Magento 2.4.x and later
- PHP >=7.4
- Hyvä Theme
ProductLinksNavigator is built by El Niño, a digital development studio in Enschede and The Hague, the Netherlands, that builds custom web and mobile apps, webshops, and more, backed by 15+ years of experience.
This module is open-source and available under the MIT License.