peterbrain / magento2-modal-overlay
Display custom content from a static block in a modal
Installs: 40
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:magento2-module
Requires
README
Package name: peterbrain/magento2-modal-overlay
Main Functionalities
- Display custom content from a static block in a modal.
- Show modal after a configurable amount of visited pages.
Installation
Method 1: Composer (recommended)
composer require peterbrain/magento2-modal-overlay
Method 2: Zip file (not recommended)
- Unzip the zip file in
app/code/PeterBrain
This extension requires PeterBrain Core. Ensure that you have it installed prior to installing this module. Use Composer to install it automatically with this module.
Enable & deploy
bin/magento module:enable PeterBrain_ModalOverlay bin/magento setup:upgrade bin/magento setup:static-content:deploy bin/magento cache:flush
Usage
- Enable module output in
Stores > Configuration > PeterBrain Extensions > Modal Overlay > General Configuration
- In Magento 2 admin, navigate to
Content > Blocks
and create a new static block with the identifiermodal-overlay_popup
. - If the module is enabled, the static block exists and is enabled, the modal pops up:
- when a user visits at least three pages
- once per user (stored in local storage - cookieless!)
In-depth information
The visited pages (count) and status of modal are stored in local storage as follows:
mage-cache-storage
: {"modal-overlay":{"displayed":false,"visited_pages":2}}