esso/magento2-abandonedcart

Magento 2 module to display abandoned carts in admin dashboard

Installs: 2

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

Type:magento2-module

pkg:composer/esso/magento2-abandonedcart

1.0.0 2025-07-13 13:03 UTC

This package is auto-updated.

Last update: 2026-01-13 14:09:15 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"