elgentos / magento2-product-duplicate-images-remove
Magento 2 find duplicate product images from your product list and from this list you can easily remove them by running a command
Installs: 225
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 1
Forks: 6
Open Issues: 0
Type:magento2-module
Requires
- magento/framework: ^103.0
This package is auto-updated.
Last update: 2024-10-19 08:13:49 UTC
README
This Extension allows you to find duplicate product images from your product list and from this list you can easily remove them by running a command.
Installation
-
Go to your Magento root folder
-
Download the extension using composer:
composer require elgentos/magento2-product-duplicate-images-remove
-
Run setup commands:
php bin/magento setup:upgrade
-
Run the command:
php bin/magento duplicate:remove
Eg:
# Use unlink php bin/magento duplicate:remove -u1 # Turn off dry run php bin/magento duplicate:remove -d0 # Combine unlink and turn off dry run php bin/magento duplicate:remove -u1 -d0 # Specific on some sku php bin/magento duplicate:remove -u1 -d0 SKU1 SKU2 SKU3