Product Alert Grid
Overview
The Product Alert Grid module allows store admins to view subscribers for out of stock notifications and price change notifications. When a customer clicks the "Notify me when price changes" link on a product details page, this information is stored in the Magento admin panel under Customers > Product Alerts > Price Notification Subscribers.
When a customer clicks the "Notify me when the product comes back in stock" link on a product details page, this information is stored in the Magento admin panel under Customers > Product Alerts > Stock Notification Subscribers.
This module also adds two menu items to the Customers > Product Alerts sub-menu. By using this module, store admins can keep track of subscriptions for notifications, the number of emails sent, and the date of the last email sent to a customer.
Features
- Ability to view subscribers for out of stock notifications
- Ability to view subscribers for price change notifications
- ACL roles for admins who can view this information
- Ability to open customer information page or product information page from a module's grid
- Ability to check if notification email has been sent to a customer
- No module-specific configuration required
Benefits
- The Product Alert Grid module provides a centralized location for admins to view and manage product alert subscriptions.
- This module can help improve customer satisfaction by notifying customers when products they are interested in are in stock or when prices change.
- The Product Alert Grid module is easy to install and use, and requires no module-specific configuration.
Magento Compatibility | 2.3.x, 2.4.x |
---|---|
License | GNU General Public License v3.0 (GPL-3.0) |
Composer Package | thesgroup/module-product-alert-grid |
Automatically Add The Repository
Through an SSH connection, all you have to do is run the following command from your Magento installation directory
composer config repositories.www.sashas.org composer https://www.sashas.org
Manually Add The Repository
The typical Magento 2 installation has repositories section of composer.json like this:
{
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
]
}
You will need to add a repository by appending an object to the repositories object
{
"repositories": {
"0": {
"type": "composer",
"url": "https://repo.magento.com/"
},
"www.sashas.org": {
"type": "composer",
"url": "https://www.sashas.org"
}
},
}
How To Install The Module
Once the repository is added to the composer.json file, you can now install the packages that are available through it.
For example, let’s say you want to install the thesgroup/module-product-alert-grid module through composer. Run the command below to install it:
composer require thesgroup/module-product-alert-grid