esso/magento2-abandonedcart

Magento 2 module to display abandoned carts in admin dashboard

dev-main 2025-07-01 15:26 UTC

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"