Product Alert Grid
Overview
Product Alert Grid module Adds ability to view subscribers for out of stock notifications and price change notifications.
When a customer clicks link "Notify me when price changes" at the product details page this information will be stored and shows at the Magento admin panel Customers -> Product Alerts -> Price Notification Subscribers.
After configuration inventory stocks, sources and product there no additional configuration need - the module will start to work automatically and calculate shipping rates based on inventory source address.
When a customer clicks link "Notify me when product comes back in stock" at the product details page this information will be stored and shows at the Magento admin panel Customers -> Product Alerts -> Stock Notification Subscribers.
This module adds two menu items for at the Customers -> Product Alerts sub-menu. By using the module you can keep track of subscriptions for a notifications, number of emails sent and the date of the last email sent to a customer.
Product Alert Grid module Adds ability to view subscribers for out of stock notifications and price change notifications.
Features
- Ability to view customers who subscribed for product price notifications
- Ability to view customers who subscribed for product stock notifications
- ACL roles 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 configuration required
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