esso / magento2-abandonedcart
Magento 2 module to display abandoned carts in admin dashboard
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
- php: ~7.4.0||~8.1.0||~8.2.0
- magento/framework: ^103.0||^104.0
- magento/module-backend: *
- magento/module-quote: *
This package is auto-updated.
Last update: 2025-07-01 15:48:19 UTC
README
One-Command Installation
Copy and run this complete command sequence in your Magento root directory:
# Install package composer require esso/magento2-abandonedcart && \ # Enable module bin/magento module:enable Esso_AbandonedCart && \ # Run setup bin/magento setup:upgrade && \ # Compile (production only) bin/magento setup:di:compile && \ bin/magento setup:static-content:deploy -f && \ # Clear caches bin/magento cache:clean && \ bin/magento cache:flush && \ # Verify installation echo "Verification:" && \ bin/magento module:status Esso_AbandonedCart && \ echo "Module installed successfully"