Welcome Popup Manager
WordPress plugin to display a configurable welcome popup with image, link and delay options.
by Cardoso Hernan · github.com/hcardoso81/welcome-popup-manager · website
Install
No release zip yet. The repository archive installs, but the folder name will carry the branch suffix and updates will not flow:
wp plugin install https://github.com/hcardoso81/welcome-popup-manager/archive/refs/heads/main.zipwelcome-popup-manager/ │ ├── admin/ # SOLO código específico del WP Admin │ ├── AdminMenu.php │ ├── AdminAssets.php │ ├── SettingsPageController.php │ ├── SettingsRegistry.php │ ├── assets/ | | └── admin.js | | │ └── fields/ │ ├── DescriptionField.php │ ├── LinkField.php │ ├── ImageField.php │ ├── DelayEnabledField.php │ ├── DelaySecondsField.php │ └── DisplayModeField.php │ ├── public/ # UI del sitio (frontend) │ ├── PopupRenderer.php │ ├── assets/ │ │ ├── popup.js │ │ └── popup.css │ └── views/ │ └── popup.php │ ├── domain/ # LÓGICA DE NEGOCIO (agnóstica de WP) │ ├── Settings.php │ ├── SettingsSanitizer.php │ └── PopupRules.php │ ├── views/ # Vistas compartidas (NO admin / NO public) │ └── admin-settings-page.php │ ├── bootstrap/ │ └── admin.php │ └── public.php │ └── welcome-popup-manager.php