You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update README for thumbnail feature in category product grid
List of changes:
- Documented the addition of the `Thumbnail` column in the category product grid.
- Updated notable directories to reflect changes related to the thumbnail feature (custom column block and plugins).
- Added details about the purpose and implementation of the thumbnail feature for admin users.
- Ensured accurate and clear descriptions aligning with recent module enhancements.
Copy file name to clipboardExpand all lines: README.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,7 @@ This module extends Magento category management in the Admin. It adds quick acti
4
4
- Copy selected attributes from one category to another
5
5
- Mass‑assign products to a category by SKU list (with simple positioning mode)
6
6
- Truncate (clear) all product assignments from a category
7
+
- Show product thumbnails in the Category › Products grid (Assign Products tab)
7
8
8
9
These tools help merchandisers manage category data faster without leaving the category screen.
9
10
@@ -28,10 +29,10 @@ README.md
28
29
```
29
30
30
31
Notable directories:
31
-
-[Block](Block/): Admin blocks for rendering buttons on the category edit page (copy, mass assign, truncate).
32
+
-[Block](Block/): Admin blocks for rendering buttons on the category edit page (copy, mass assign, truncate) and custom grid columns (e.g., product thumbnail).
32
33
-[Controller](Controller/): Admin controllers handling copy, mass assign, and truncate actions.
33
34
-[Service](Service/): Application services for attribute copy and product linking logic.
34
-
-[Plugin](Plugin/): Admin UI plugin to inject extra buttons into the category product assignment UI.
35
+
-[Plugin](Plugin/): Admin UI plugins to inject extra buttons and columns into the category product assignment UI.
35
36
-[Ui](Ui/): UI data providers for admin modals/forms.
36
37
-[view](view/): Adminhtml layouts, templates, JS, and LESS for the UI.
37
38
-[etc](etc/): Module declaration and admin wiring (routes, DI, ACL via Magento catalog permissions).
@@ -77,6 +78,11 @@ All features are available in the Admin at Catalog > Categories, on the category
77
78
- Truncate products in category
78
79
- Removes existing product assignments for the current category.
79
80
81
+
- Product thumbnails in grid (new)
82
+
- On the Assign Products tab (Category > Products), a Thumbnail column is added.
83
+
- Helps merchandisers visually identify products while assigning/ordering them.
84
+
- Implemented via custom column block and renderer, injected through admin UI plugins.
85
+
80
86
Access control: actions reuse Magento’s `Magento_Catalog::categories` permission, so users with category management rights can use the buttons.
0 commit comments