Master Popups v2.8.5 NULLED – WordPress Popup Plugin

Master Popups is an impressive, easy-to-use and powerful pop-up WordPress plugin for creating modal pop-up windows, notifications, full-screen pop-up windows, pop-up windows, and Inline & Widget pop-up tips. You can easily create pop-up windows from our pre-created templates with a few mouse clicks. The plugin comes with many ready-to-use templates, so you can add any type of content to your pop-up windows.
Email Marketing Service Integration – CRM Software
For now these are the services that are integrated with Master Popups. But we will add more soon.
- MailChimp
- Mailster (MyMail) – WordPress Plugin
- MailPoet – WordPress Plugin
- Sendinblue
- GetResponse
- Mautic
- Active Campaign
- Drip
- ConvertKit
- Klaviyo
- Constant Contact
- Zoho Campaigns
- Hubspot
- Ontraport
- iContact
- Infusionsoft
- Aweber
- TotalSend
- Campaign Monitor
- Autopilot
- Benchmark Email
- MailerLite
- Mad Mimi
- Freshmail
- Pipedrive
- SimplyCast
- Customer.io
- TuNewsletter
- Mailgun
- Newsman
Core Features
With Master Popups you can create Modal Popups, Full Screen Popups, Notification Bars, Slide-In popups and Inline & Widget Popups. And we have many features available to make life easier for you.
Fully Customizable
- Unlimited popups, you can create as many popups you want.
- Popup size: width, height or Full Screen popup.
- Popup Background settings.
- Entrance and Exit Animations for each popup.
- Overlay settings for popups, colors, opacity, etc.
- Customizable preloader.
- Sticky mode for popups.
- Options to download a file and redirect user after submitting the form.
- Cookies to show the popup only once.
- Native Subscription / Contact forms.
- Shortcodes support. Popup shortcode and Inline Shortcode.
- Inline popups: Embed your popups before or after post/page content. Or in widget area
- Pre-Made Popup templates
- Save your popup data for use on another website.
- Etc
Trigers – When to run the popup?
- On Click: Display the popup by clicking on certain element
- On Page Load: Display the popup automatically after X seconds
- On Exit Intent: Display the popup when the user tries to leave your website
- On User Inactivity: Display the popup after X seconds of user inactivity
- On Scroll: Display the popup after scrolling down X amount, after post content or after certain element
- Display Inline: Embed the popup automatically before or after post/page content
Page Level targeting
Show your popups depending on the post/page, category, tags, custom post types, etc.
- Display popup on all site
- Display popup on Homepage
- Display popup on Archives
- Display popup on Pages
- Display popup on Posts
- Display popup on Categories
- Display popup on Tags
- Display popup on Specific URLs
- Display popup on Custom Post Types
- Display popup for certain users: Logged-In Users or Not Logged-In Users
- Display popup on these devices: Desktop, Tablet, Mobile
Popup Callbacks
Run your own javascript code on After Open Popup, After Close Popup, After Form Submission
Email Marketing Integration
Master Popups has a integrated system that lets you store and manage leads, also can be seamlessly integrated with many third party email marketing services (CRM).
- MailChimp
- Mailster (MyMail) – WordPress Plugin
- MailPoet – WordPress Plugin
- Sendinblue
- GetResponse
- Mautic
- Active Campaign
- Drip
- ConvertKit
- Klaviyo
- Constant Contact
- Zoho Campaigns
- Hubspot
- Ontraport
- iContact
- Infusionsoft
- Aweber
- TotalSend
- Campaign Monitor
- Autopilot
- Benchmark Email
- MailerLite
- Mad Mimi
- Freshmail
- Pipedrive
- SimplyCast
- Customer.io
- TuNewsletter
- Mailgun
- Newsman
Javascript Events
Open Popup By ID
var popup_id = 123; MasterPopups.open(popup_id); //Or using a jQuery selector $('.mpp-popup-'+popup_id).MasterPopups();
Close Popup By ID
var popup_id = 123; MasterPopups.close(popup_id);
Open Popup and Close
var popup_id = 123; var $popup = MasterPopups.open(popup_id); setTimeout(function(){ MasterPopups.close($popup); }, 5000);
Popup Events
MasterPopups.on('beforeOpen', function($, popup_instance, popup_id, options){ console.log("Before Open Popup"); }); MasterPopups.on('afterOpen', function($, popup_instance, popup_id, options){ console.log("After Open Popup"); }); MasterPopups.on('beforeClose', function($, popup_instance, popup_id, options){ console.log("Before Close Popup"); }); MasterPopups.on('afterClose', function($, popup_instance, popup_id, options){ console.log("After Close Popup"); }); MasterPopups.on('submit', function($, popup_instance, popup_id, options, success){ console.log("On Form Submit"); });
Use Cases
Open a Popup by clicking on a button
jQuery(document).ready(function ($) { $('.link').on('click', function (e) { var popup_id = 123; MasterPopups.open(popup_id); }); });
Contact Form 7: Open a Popup after sending the form
jQuery(document).ready(function ($) { var wpcf7Elm = document.querySelector('.wpcf7'); wpcf7Elm.addEventListener('wpcf7submit', function (event) { var popup_id = 123; MasterPopups.open(popup_id); }, false); });
WooCommerce: Open a Popup when updating the Cart
jQuery(document).ready(function ($) { $('body').on('added_to_cart', function () { var popup_id = 123; MasterPopups.open(popup_id); }); });