Popups by OptinMonster – Best WordPress Lead Generation Plugin - Version 1.5.2

Version Description

  • Fixed potential privilege escalation bug.
  • Bumped for 5.0.
Download this release

Release Info

Developer griffinjt
Plugin Icon 128x128 Popups by OptinMonster – Best WordPress Lead Generation Plugin
Version 1.5.2
Comparing to
See all releases

Code changes from version 1.5.1 to 1.5.2

assets/css/settings.css CHANGED
@@ -533,11 +533,6 @@ body.omapi-welcome {
533
  .omapi-optin .omapi-links,
534
  .omapi-optin .omapi-links a {
535
  font-size: 12px;
536
- color: #555d66;
537
- }
538
-
539
- .omapi-optin .omapi-links a:hover {
540
- color: #23282d;
541
  }
542
 
543
  /* Inline Note */
533
  .omapi-optin .omapi-links,
534
  .omapi-optin .omapi-links a {
535
  font-size: 12px;
 
 
 
 
 
536
  }
537
 
538
  /* Inline Note */
includes/class-am-notification.php CHANGED
@@ -10,7 +10,7 @@ if ( ! class_exists( 'AM_Notification' ) ) {
10
  * @author Benjamin Rojas
11
  * @license GPL-2.0+
12
  * @copyright Copyright (c) 2017, Retyp LLC
13
- * @version 1.0.6
14
  */
15
  class AM_Notification {
16
  /**
@@ -75,7 +75,9 @@ if ( ! class_exists( 'AM_Notification' ) ) {
75
  */
76
  public function custom_post_type() {
77
  register_post_type( 'amn_' . $this->plugin, array(
78
- 'supports' => false,
 
 
79
  ) );
80
  }
81
 
@@ -85,7 +87,7 @@ if ( ! class_exists( 'AM_Notification' ) ) {
85
  * @since 1.0.0
86
  */
87
  public function get_remote_notifications() {
88
- if ( ! current_user_can( apply_filters( 'am_notifications_display', 'manage_options' ) ) ) {
89
  return;
90
  }
91
 
@@ -180,7 +182,7 @@ if ( ! class_exists( 'AM_Notification' ) ) {
180
  * @since 1.0.0
181
  */
182
  public function display_notifications() {
183
- if ( ! current_user_can( apply_filters( 'am_notifications_display', 'manage_options' ) ) ) {
184
  return;
185
  }
186
 
@@ -337,14 +339,28 @@ if ( ! class_exists( 'AM_Notification' ) ) {
337
  $key = WPFORMS_LICENSE_KEY;
338
  }
339
  break;
 
340
  case 'mi' :
341
- $option = get_option( 'monsterinsights_license' );
342
- $key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
343
- $level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
344
-
345
- // Possibly check for a constant.
346
- if ( empty( $key ) && defined( 'MONSTERINSIGHTS_LICENSE_KEY' ) && is_string( MONSTERINSIGHTS_LICENSE_KEY ) && strlen( MONSTERINSIGHTS_LICENSE_KEY ) > 10 ) {
347
- $key = MONSTERINSIGHTS_LICENSE_KEY;
 
 
 
 
 
 
 
 
 
 
 
 
 
348
  }
349
  break;
350
  case 'om' :
@@ -368,6 +384,11 @@ if ( ! class_exists( 'AM_Notification' ) ) {
368
  $level = 'none';
369
  }
370
 
 
 
 
 
 
371
  // Normalize the level.
372
  switch ( $level ) {
373
  case 'bronze' :
@@ -398,7 +419,7 @@ if ( ! class_exists( 'AM_Notification' ) ) {
398
  * @since 1.0.0
399
  */
400
  public function dismiss_notification() {
401
- if ( ! current_user_can( apply_filters( 'am_notifications_display', 'manage_options' ) ) ) {
402
  die;
403
  }
404
 
10
  * @author Benjamin Rojas
11
  * @license GPL-2.0+
12
  * @copyright Copyright (c) 2017, Retyp LLC
13
+ * @version 1.0.7
14
  */
15
  class AM_Notification {
16
  /**
75
  */
76
  public function custom_post_type() {
77
  register_post_type( 'amn_' . $this->plugin, array(
78
+ 'can_export' => false,
79
+ 'supports' => false,
80
+ 'capability_type' => 'manage_options'
81
  ) );
82
  }
83
 
87
  * @since 1.0.0
88
  */
89
  public function get_remote_notifications() {
90
+ if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
91
  return;
92
  }
93
 
182
  * @since 1.0.0
183
  */
184
  public function display_notifications() {
185
+ if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
186
  return;
187
  }
188
 
339
  $key = WPFORMS_LICENSE_KEY;
340
  }
341
  break;
342
+ case 'mi-lite' :
343
  case 'mi' :
344
+ if ( version_compare( MONSTERINSIGHTS_VERSION, '6.9.0', '>=' ) ) {
345
+ if ( MonsterInsights()->license->get_site_license_type() ) {
346
+ $key = MonsterInsights()->license->get_site_license_key();
347
+ $type = MonsterInsights()->license->get_site_license_type();
348
+ } else if ( MonsterInsights()->license->get_network_license_type() ) {
349
+ $key = MonsterInsights()->license->get_network_license_key();
350
+ $type = MonsterInsights()->license->get_network_license_type();
351
+ }
352
+ // Check key fallbacks
353
+ if ( empty( $key ) ) {
354
+ $key = MonsterInsights()->license->get_license_key();
355
+ }
356
+ } else {
357
+ $option = get_option( 'monsterinsights_license' );
358
+ $key = is_array( $option ) && isset( $option['key'] ) ? $option['key'] : '';
359
+ $level = is_array( $option ) && isset( $option['type'] ) ? $option['type'] : '';
360
+ // Possibly check for a constant.
361
+ if ( empty( $key ) && defined( 'MONSTERINSIGHTS_LICENSE_KEY' ) && is_string( MONSTERINSIGHTS_LICENSE_KEY ) && strlen( MONSTERINSIGHTS_LICENSE_KEY ) > 10 ) {
362
+ $key = MONSTERINSIGHTS_LICENSE_KEY;
363
+ }
364
  }
365
  break;
366
  case 'om' :
384
  $level = 'none';
385
  }
386
 
387
+ // Possibly set the level to 'unknown' if a key is entered, but no level can be determined (such as manually entered key)
388
+ if ( ! empty( $key ) && empty( $level ) ) {
389
+ $level = 'unknown';
390
+ }
391
+
392
  // Normalize the level.
393
  switch ( $level ) {
394
  case 'bronze' :
419
  * @since 1.0.0
420
  */
421
  public function dismiss_notification() {
422
+ if ( ! apply_filters( 'am_notifications_display', is_super_admin() ) ) {
423
  die;
424
  }
425
 
optin-monster-wp-api.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: OptinMonster API plugin to connect your WordPress site to your OptinMonster account.
6
  * Author: OptinMonster Team
7
  * Author URI: https://optinmonster.com
8
- * Version: 1.5.1
9
  * Text Domain: optin-monster-api
10
  * Domain Path: languages
11
  *
@@ -60,7 +60,7 @@ class OMAPI {
60
  *
61
  * @var string
62
  */
63
- public $version = '1.5.1';
64
 
65
  /**
66
  * The name of the plugin.
5
  * Description: OptinMonster API plugin to connect your WordPress site to your OptinMonster account.
6
  * Author: OptinMonster Team
7
  * Author URI: https://optinmonster.com
8
+ * Version: 1.5.2
9
  * Text Domain: optin-monster-api
10
  * Domain Path: languages
11
  *
60
  *
61
  * @var string
62
  */
63
+ public $version = '1.5.2';
64
 
65
  /**
66
  * The name of the plugin.
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Popups by OptinMonster - Best WordPress Lead Generation Plugin ===
2
  Contributors: optinmonster, griffinjt, smub
3
- Tags: wordpress popup, popup, lightbox popup, mailchimp, aweber, campaign monitor, constant contact, exit-intent, madmimi, infusionsoft, getresponse, hubspot, marketo, activecampaign, pardot, totalsend, emma, icontact, mailerlite, mailpoet, google analytics, pop over, optin forms, email list, subscribers, wordpress popup form, lightbox, wordpress popups, popups, lightbox popups, optin form, wordpress optin form, sidebar optin form, sidebar optin, sidebar form, wordpress overlay popup, wordpress popup plugin, popup plugin, wordpress lightbox optin, wordpress lightbox optin form, after post optin form, wordpress after post optin form, after post optin form plugin, lightbox popup plugin, wordpress popup solution, exit intent, exit-intent, optinmonster, optin monster, optin-monster, mobile popup, mobile popups, mobile optin forms, mobile optins, lightbox optins, wordpress mobile popup, wordpress mobile popups, wordpress mobile optin forms, wordpress lightbox optins, lead gen, lead generation, wordpress lead generation, lead generation wordpress, wordpress lead gen, fullscreen, welcome gate, interstitial
4
  Requires at least: 3.5.1
5
- Tested up to: 4.9.8
6
  Requires PHP: 5.3
7
- Stable tag: 1.5.1
8
  License: GNU General Public License v2.0 or later
9
 
10
  OptinMonster helps you grow your email list by converting visitors into subscribers and customers. Get more email subscribers now!
@@ -12,41 +12,48 @@ OptinMonster helps you grow your email list by converting visitors into subscrib
12
  == Description ==
13
 
14
  = WordPress Popup Plugin =
15
- Did you know that over 70% of website visitors who leave your website will never return? Why? Because most people find your blog, read, and leave (that's just a natural pattern). Wouldn't it be nice if you can convert some of those people to subscribe to your blog? That's where <a href="https://optinmonster.com" rel="friend" title="OptinMonster">OptinMonster</a> can help. OptinMonster helps you grow your email list and get more subscribers with popup and other types of high converting optin forms.
 
 
 
 
16
 
17
  > <strong>OptinMonster App</strong><br>
18
- > OptinMonster is a standalone application that integrates with all web platforms including WordPress. You must have an OptinMonster account in order to take advantage of this plugin. <a href="https://optinmonster.com/wp/?utm_source=orgplugin&utm_medium=link&utm_campaign=wpreadme" rel="friend" title="Click here to learn more about OptinMonster">Click here to learn more about OptinMonster.</a>
19
 
20
- OptinMonster comes with an easy to use form builder that allows you to create beautiful optin forms that are proven to convert. You can create various type of campaigns including WordPress popup forms, floating header and footer bars, slide-ins also known as scroll triggered boxes, sidebar forms, after post forms, in-line forms, mobile-specific forms, welcome gates and more.
21
 
22
- Using OptinMonster forms combined with our exit-intent technology, page-level targeting, and behavior automation, users have seen an instant boost in conversion rate, _even upwards of 785%!_
23
 
24
- Let's take a look at how OptinMonster can help you get more email subscribers.
25
 
26
- > <strong>OptinMonster App</strong><br>
27
- > OptinMonster is a standalone application that integrates with all web platforms including WordPress. You must have an OptinMonster account in order to take advantage of this plugin. <a href="https://optinmonster.com/wp/?utm_source=orgplugin&utm_medium=link&utm_campaign=wpreadme" rel="friend" title="Click here to learn more about OptinMonster">Click here to learn more about OptinMonster.</a>
 
28
 
29
- = OptinMonster Builder + Optin Forms Templates =
30
 
31
- OptinMonster allows you to build high converting opt-in forms in minutes, not hours!
 
 
32
 
33
- You can choose from 8 different type of campaigns including: popup forms, floating bars, slide-ins, sidebar forms, after-post forms, in-line forms, mobile-only popup forms, and Canvas.
34
 
35
- All of our templates are 100% responsive and mobile friendly.
36
 
37
  = Easy Integration with All Email Marketing Services =
38
 
39
- We started with the goal to make the most beginner friendly lead generation plugin. That's why OptinMonster works out of the box with all popular email marketing service providers including but not limited to:
40
 
41
- MailChimp, AWeber, Infusionsoft, GetResponse, ConstantContact, CampaignMonitor, Hubspot, Marketo, ActiveCampaign, Pardot, TotalSend, Emma, iContact, MailerLite, Customer.io, MailPoet, and FeedBlitz.
42
 
43
- You can also use custom HTML forms as well as use shortcodes to add other form plugins such as Gravity Forms, Ninja Forms, etc.
44
 
45
  = Powerful Exit-Intent&reg; Technology =
46
 
47
  OptinMonster is among the pioneers of <a href="https://optinmonster.com/features/exit-intent/" rel="friend" title="Exit-Intent Technology">exit-intent technology</a>. It helps you track user's mouse behavior and prompt them with a targeted message at the precise moment they are about to leave.
48
 
49
- This allows you to re-engage the visitor and encourage them to subscribe. Exit-intent is proven to increase conversions.
50
 
51
  We used it on our site, <a href="http://www.wpbeginner.com/" rel="friend" title="WPBeginner - Beginners Guide to WordPress">WPBeginner</a>, and increased conversions by over 600%.
52
 
@@ -57,9 +64,9 @@ But don't just take our word. See what one of the experts are saying:
57
 
58
  = Advanced Page Level Targeting and Behavior Personalization =
59
 
60
- Have you ever wondered what if you created a highly targeted message based on the specific page, traffic referral source, category or tag of your site? How would that impact your conversions?
61
-
62
- Well, we have tested it, and it works wonders. We liked the results so much that we built-it into OptinMonster.
63
 
64
  OptinMonster's <a href="https://optinmonster.com/features/page-level-targeting/" rel="friend" title="Page Level Targeting">page level targeting module</a> allows you to display unique offers and campaigns based on visitor's location and interaction on your website.
65
 
@@ -74,7 +81,7 @@ Read how this helped one of our users:
74
 
75
  A/B testing is one of the most desired features, but normally it is extremely hard to setup for beginners. Well, we changed that.
76
 
77
- OptinMonster's easy <a href="https://optinmonster.com/features/easy-ab-split-testing/" rel="friend" title="A/B split testing">A/B split testing</a> module helps you eliminate the guess work and make data-driven decisions on what works best.
78
 
79
  You can try different content, headlines, layouts, styles, and opt-in triggers, to see what converts best.
80
 
@@ -83,24 +90,25 @@ You can try different content, headlines, layouts, styles, and opt-in triggers,
83
 
84
  = Detailed Conversion Analytics =
85
 
86
- Most people don't know what to do with analytics because they don't understand them. OptinMonster's <a href="https://optinmonster.com/features/conversion-analytics/" rel="friend" title="conversion analytics">conversion analytics</a> is easy to understand and give you the stats that matter, so you can take action to improve your lead-generation strategy.
87
 
88
  = MonsterLinks&trade; - 2 Step Opt-in Technology =
89
 
90
- <a href="https://optinmonster.com/features/monsterlinks/" rel="friend" title="MonsterLinks">MonsterLinks</a> allow you to turn any link or image into a 2-step opt-in process which is proven to boost conversions by as much as 785%. Marketers use it to offer content upgrades and then use OptinMonster's success redirect feature for lead-magnet delivery.
91
 
92
  = Full Features List =
93
 
94
 
95
  * High converting template library (100% responsive mobile-friendly).
96
- * 8 different types of optin forms.
 
97
  * Powerful page level targeting to build a hyper-segmented email list.
98
  * Custom user-centric output settings to target visitors, logged-in users or a mixture of both.
99
  * Category, tag and custom taxonomy output controls for robust campaign segmenting.
100
  * Custom analytics with Google Analytics to tell you which campaigns are converting the best.
101
  * Our signature Exit Intent&trade; technology to convert abandoning website visitors into subscribers and customers.
102
  * Powerful A/B testing that helps you eliminate guess work and make data driven decisions on what works best.
103
- * MonsterLinks&trade; 2-step optin technology **which is proven to boost conversions by as much as 785%!**
104
  * Mobile specific popup forms that are specifically targeted towards mobile visitors.
105
  * Scroll triggered popup and optin forms for enhanced conversion rates.
106
  * Timed popup forms - display opt-ins after a certain time or on second pageview.
@@ -120,9 +128,12 @@ If you like this plugin, then consider checking out our other projects:
120
 
121
  * <a href="https://wpforms.com/" rel="friend" title="WPForms">WPForms</a> - Best WordPress Contact Form Plugin
122
  * <a href="https://www.monsterinsights.com/" rel="friend" title="MonsterInsights">MonsterInsights</a> - Best Google Analytics Plugin for WordPress
 
123
 
124
  Visit WPBeginner to learn from our <a href="http://www.wpbeginner.com/category/wp-tutorials/" rel="friend" title="WordPress Tutorials">WordPress Tutorials</a> and find out about other <a href="http://www.wpbeginner.com/category/plugins/" rel="friend" title="Best WordPress Plugins">best WordPress plugins</a>.
125
 
 
 
126
  = Press & Brand Assets =
127
 
128
  If you are interested in writing about OptinMonster, then we have have prepared a <a href="https://optinmonster.com/press/" rel="friend" title="OptinMonster Press Page">Press & Brand Assets page</a> where you can download our logo, screenshots, and other relevant assets.
@@ -148,6 +159,10 @@ You can sign up for an OptinMonster account by <a href="https://optinmonster.com
148
 
149
  == Screenshots ==
150
 
 
 
 
 
151
 
152
  == Notes ==
153
 
@@ -160,6 +175,10 @@ OptinMonster is the <a href="https://optinmonster.com" rel="friend" title="Optin
160
 
161
  == Changelog ==
162
 
 
 
 
 
163
  = 1.5.1 =
164
  * Fixed a possible security issue with admin notices.
165
  * Updated outdated URLs in the admin.
@@ -448,4 +467,4 @@ OptinMonster is the <a href="https://optinmonster.com" rel="friend" title="Optin
448
  * Fix error with loading old API script.
449
 
450
  = 0.9.8 =
451
- * Initial release.
1
  === Popups by OptinMonster - Best WordPress Lead Generation Plugin ===
2
  Contributors: optinmonster, griffinjt, smub
3
+ Tags: email list, wordpress popup, popup, popup plugin, wordpress popup plugin, lightbox popup, mailchimp, aweber, campaign monitor, constant contact, exit-intent, madmimi, infusionsoft, getresponse, hubspot, marketo, activecampaign, pardot, totalsend, emma, icontact, mailerlite, mailpoet, google analytics, pop over, optin forms, subscribers, wordpress popup form, lightbox, wordpress popups, popups, lightbox popups, optin form, wordpress optin form, sidebar optin form, sidebar optin, sidebar form, wordpress overlay popup, wordpress lightbox optin, wordpress lightbox optin form, after post optin form, wordpress after post optin form, after post optin form plugin, lightbox popup plugin, wordpress popup solution, exit intent, exit-intent, optinmonster, optin monster, optin-monster, mobile popup, mobile popups, mobile optin forms, mobile optins, lightbox optins, wordpress mobile popup, wordpress mobile popups, wordpress mobile optin forms, wordpress lightbox optins, lead gen, lead generation, wordpress lead generation, lead generation wordpress, wordpress lead gen, fullscreen, welcome gate, interstitial
4
  Requires at least: 3.5.1
5
+ Tested up to: 5.0
6
  Requires PHP: 5.3
7
+ Stable tag: 1.5.2
8
  License: GNU General Public License v2.0 or later
9
 
10
  OptinMonster helps you grow your email list by converting visitors into subscribers and customers. Get more email subscribers now!
12
  == Description ==
13
 
14
  = WordPress Popup Plugin =
15
+ Did you know that over 70% of website visitors who leave your website will never return? Why? Because most people find your blog, read, and leave (that's just a natural pattern).
16
+
17
+ Wouldn't it be nice if you can convert some of those people to subscribe to your blog?
18
+
19
+ That's where <a href="https://optinmonster.com" rel="friend" title="OptinMonster">OptinMonster</a> can help. OptinMonster helps you grow your email list and get more subscribers with popup and other types of high converting optin forms.
20
 
21
  > <strong>OptinMonster App</strong><br>
22
+ > OptinMonster is a standalone application that integrates with all website platforms including WordPress. You must have an OptinMonster account in order to take advantage of this plugin. <a href="https://optinmonster.com/wp/?utm_source=orgplugin&utm_medium=link&utm_campaign=wpreadme" rel="friend" title="Click here to learn more about OptinMonster">Click here to learn more about OptinMonster.</a>
23
 
24
+ OptinMonster comes with an easy-to-use drag-and-drop popup builder that allows you to create beautiful email optin forms that are proven to convert. You can create various types of campaigns including WordPress popup forms, floating header and footer bars, slide-ins also known as scroll triggered boxes, sidebar forms, after post forms, in-line forms, mobile-specific forms, welcome gates and more.
25
 
26
+ Using OptinMonster popups combined with our exit-intent technology, page-level targeting, and behavior automation, users have seen an instant boost in conversion rate, _even upwards of 785%!_
27
 
28
+ Let's take a look at how OptinMonster can help you grow your email list.
29
 
30
+ = Drag-and-Drop Builder + Optin Forms Templates =
31
+
32
+ OptinMonster allows you to build high-converting opt-in forms in minutes, not hours!
33
 
34
+ You can choose from 5 different type of campaigns including: lightbox popups, fullscreen popups, floating bars, slide-ins, and in-line forms.
35
 
36
+ Choose a pre-built template designed for maximum conversions,
37
+ or start from scratch with a blank canvas. Customize all the details
38
+ with our easy to use drag-and-drop builder - no code needed.
39
 
40
+ With OptinMonster's drag-and-drop builder, you can add any element to your popups including video, social icons, images, buttons, and more.
41
 
42
+ All of your campaigns will be 100% responsive and mobile friendly.
43
 
44
  = Easy Integration with All Email Marketing Services =
45
 
46
+ We started with the goal to make the most beginner-friendly lead generation plugin to grow your email list. That's why OptinMonster works out of the box with all popular email marketing service providers including but not limited to:
47
 
48
+ MailChimp, AWeber, Drip, ConvertKit, Infusionsoft, GetResponse, ConstantContact, CampaignMonitor, Hubspot, Marketo, ActiveCampaign, Pardot, TotalSend, Emma, iContact, MailerLite, Customer.io, MailPoet, and FeedBlitz.
49
 
50
+ You can also use custom HTML forms as well as use shortcodes to add other form plugins such as WPForms, Formidable Forms, etc.
51
 
52
  = Powerful Exit-Intent&reg; Technology =
53
 
54
  OptinMonster is among the pioneers of <a href="https://optinmonster.com/features/exit-intent/" rel="friend" title="Exit-Intent Technology">exit-intent technology</a>. It helps you track user's mouse behavior and prompt them with a targeted message at the precise moment they are about to leave.
55
 
56
+ Exit popups allow you to re-engage the visitor and encourage them to subscribe to your email list. Exit-intent is proven to increase conversions.
57
 
58
  We used it on our site, <a href="http://www.wpbeginner.com/" rel="friend" title="WPBeginner - Beginners Guide to WordPress">WPBeginner</a>, and increased conversions by over 600%.
59
 
64
 
65
  = Advanced Page Level Targeting and Behavior Personalization =
66
 
67
+ Our powerful targeting and segmentation engine lets you
68
+ show your perfect offer to the right people at the exact right time
69
+ to maximize your website conversions.
70
 
71
  OptinMonster's <a href="https://optinmonster.com/features/page-level-targeting/" rel="friend" title="Page Level Targeting">page level targeting module</a> allows you to display unique offers and campaigns based on visitor's location and interaction on your website.
72
 
81
 
82
  A/B testing is one of the most desired features, but normally it is extremely hard to setup for beginners. Well, we changed that.
83
 
84
+ OptinMonster's easy <a href="https://optinmonster.com/features/easy-ab-split-testing/" rel="friend" title="A/B split testing">A/B split testing</a> tool helps you eliminate the guess work and make data-driven decisions on what works best.
85
 
86
  You can try different content, headlines, layouts, styles, and opt-in triggers, to see what converts best.
87
 
90
 
91
  = Detailed Conversion Analytics =
92
 
93
+ OptinMonster's <a href="https://optinmonster.com/features/conversion-analytics/" rel="friend" title="conversion analytics">conversion analytics</a> is easy to understand and give you the stats that matter, so you can take action to improve your lead-generation strategy.
94
 
95
  = MonsterLinks&trade; - 2 Step Opt-in Technology =
96
 
97
+ <a href="https://optinmonster.com/features/monsterlinks/" rel="friend" title="MonsterLinks">MonsterLinks</a> allow you to easily create a WordPress popup on click, which is proven to boost conversions by as much as 785%. Marketers use it to offer content upgrades and then use OptinMonster's success redirect feature for lead-magnet delivery.
98
 
99
  = Full Features List =
100
 
101
 
102
  * High converting template library (100% responsive mobile-friendly).
103
+ * Drag-and-drop campaign builder to easily customize any campaign, no code needed.
104
+ * 5 different types of email opt in forms.
105
  * Powerful page level targeting to build a hyper-segmented email list.
106
  * Custom user-centric output settings to target visitors, logged-in users or a mixture of both.
107
  * Category, tag and custom taxonomy output controls for robust campaign segmenting.
108
  * Custom analytics with Google Analytics to tell you which campaigns are converting the best.
109
  * Our signature Exit Intent&trade; technology to convert abandoning website visitors into subscribers and customers.
110
  * Powerful A/B testing that helps you eliminate guess work and make data driven decisions on what works best.
111
+ * MonsterLinks&trade; popup on click technology **which is proven to boost conversions by as much as 785%!**
112
  * Mobile specific popup forms that are specifically targeted towards mobile visitors.
113
  * Scroll triggered popup and optin forms for enhanced conversion rates.
114
  * Timed popup forms - display opt-ins after a certain time or on second pageview.
128
 
129
  * <a href="https://wpforms.com/" rel="friend" title="WPForms">WPForms</a> - Best WordPress Contact Form Plugin
130
  * <a href="https://www.monsterinsights.com/" rel="friend" title="MonsterInsights">MonsterInsights</a> - Best Google Analytics Plugin for WordPress
131
+ * <a href="https://www.seedprod.com/" rel="friend" title="SeedProd">SeedProd</a> - Best Coming Soon &amp; Maintenance Most Plugin for WordPress
132
 
133
  Visit WPBeginner to learn from our <a href="http://www.wpbeginner.com/category/wp-tutorials/" rel="friend" title="WordPress Tutorials">WordPress Tutorials</a> and find out about other <a href="http://www.wpbeginner.com/category/plugins/" rel="friend" title="Best WordPress Plugins">best WordPress plugins</a>.
134
 
135
+ To get the most value out of your growing email list, see our <a href="https://optinmonster.com/beginners-guide-to-email-marketing/" rel="friend" title="Email Marketing Guide">beginner's guide to email marketing</a>.
136
+
137
  = Press & Brand Assets =
138
 
139
  If you are interested in writing about OptinMonster, then we have have prepared a <a href="https://optinmonster.com/press/" rel="friend" title="OptinMonster Press Page">Press & Brand Assets page</a> where you can download our logo, screenshots, and other relevant assets.
159
 
160
  == Screenshots ==
161
 
162
+ 1. The OptinMonster WordPress popup plugin allows you to control how and where your popups load on your website.
163
+ 2. Create and customize your popups with our drag-and-drop popup builder.
164
+ 3. Manage your popups and other campaigns from the OptinMonster dashboard.
165
+ 4. Get detailed analytics on how each popup and split test is converting.
166
 
167
  == Notes ==
168
 
175
 
176
  == Changelog ==
177
 
178
+ = 1.5.2 =
179
+ * Fixed potential privilege escalation bug.
180
+ * Bumped for 5.0.
181
+
182
  = 1.5.1 =
183
  * Fixed a possible security issue with admin notices.
184
  * Updated outdated URLs in the admin.
467
  * Fix error with loading old API script.
468
 
469
  = 0.9.8 =
470
+ * Initial release.