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

Version Description

  • Fixed a bug that caused too many redirects in the admin when clicking on certain plugin settings links.
  • Removed a plugin action link that was not used.
Download this release

Release Info

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

Code changes from version 1.9.10 to 1.9.11

CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
  # Changelog
2
  All notable changes to the OptinMonster plugin will be documented in this file.
3
 
 
 
 
 
4
  ### 1.9.10
5
  * New Gutenberg block for embedding inline campaigns.
6
  * Improved syncing of data between the OptinMonster app and the WordPress plugin to help with shortcode parsing, and adding/removing campaigns when going live or pausing. Will also retain previously saved Output Settings when un-pausing a campaign and refreshing.
1
  # Changelog
2
  All notable changes to the OptinMonster plugin will be documented in this file.
3
 
4
+ ### 1.9.11
5
+ * Fixed a bug that caused too many redirects in the admin when clicking on certain plugin settings links.
6
+ * Removed a plugin action link that was not used.
7
+
8
  ### 1.9.10
9
  * New Gutenberg block for embedding inline campaigns.
10
  * Improved syncing of data between the OptinMonster app and the WordPress plugin to help with shortcode parsing, and adding/removing campaigns when going live or pausing. Will also retain previously saved Output Settings when un-pausing a campaign and refreshing.
OMAPI/Menu.php CHANGED
@@ -308,7 +308,6 @@ class OMAPI_Menu {
308
  ? array(
309
  sprintf( '<a href="%s">%s</a>', $this->get_dashboard_link(), __( 'Campaigns', 'optin-monster-api' ) ),
310
  sprintf( '<a href="%s">%s</a>', $this->get_settings_link(), __( 'Settings', 'optin-monster-api' ) ),
311
- sprintf( '<a href="%s">%s</a>', $this->admin_page_url( array( 'page' => 'optin-monster-templates' ) ), __( 'Create New Campaign', 'optin-monster-api' ) ),
312
  )
313
  : array(
314
  sprintf( '<a href="%s">%s</a>', $this->get_dashboard_link(), __( 'Connect', 'optin-monster-api' ) ),
@@ -1634,7 +1633,7 @@ class OMAPI_Menu {
1634
  * @return string
1635
  */
1636
  public function get_dashboard_link( $view = '', $args = array() ) {
1637
- $page = $this->has_trial_link() || ( ! $this->base->get_api_credentials() && ! isset( $_GET['om-bypass-api-check'] ) )
1638
  ? 'optin-monster-api-welcome'
1639
  : $this->parent_slug();
1640
 
308
  ? array(
309
  sprintf( '<a href="%s">%s</a>', $this->get_dashboard_link(), __( 'Campaigns', 'optin-monster-api' ) ),
310
  sprintf( '<a href="%s">%s</a>', $this->get_settings_link(), __( 'Settings', 'optin-monster-api' ) ),
 
311
  )
312
  : array(
313
  sprintf( '<a href="%s">%s</a>', $this->get_dashboard_link(), __( 'Connect', 'optin-monster-api' ) ),
1633
  * @return string
1634
  */
1635
  public function get_dashboard_link( $view = '', $args = array() ) {
1636
+ $page = ! $this->base->get_api_credentials() && ! isset( $_GET['om-bypass-api-check'] )
1637
  ? 'optin-monster-api-welcome'
1638
  : $this->parent_slug();
1639
 
OMAPI/Pages.php CHANGED
@@ -142,12 +142,12 @@ class OMAPI_Pages {
142
  'wpforms-lite/wpforms.php' => array(
143
  'icon' => $this->base->url . 'assets/images/about/plugin-wp-forms.png',
144
  'class' => 'wpforms-litewpformsphp',
145
- 'name' => 'WP Forms',
146
- 'desc' => sprintf( esc_html__( '%s allows you to create beautiful contact forms, feedback form, subscription forms, payment forms, and other type of forms for your site in minutes, not hours!', 'optin-monster-api' ), 'WP Forms' ),
147
  'url' => 'https://downloads.wordpress.org/plugin/wpforms-lite.zip',
148
  'pro' => array(
149
  'plugin' => 'wpforms-premium/wpforms.php',
150
- 'name' => 'WP Forms Pro',
151
  'url' => 'https://www.wpforms.com/?utm_source=proplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0',
152
  ),
153
  ),
142
  'wpforms-lite/wpforms.php' => array(
143
  'icon' => $this->base->url . 'assets/images/about/plugin-wp-forms.png',
144
  'class' => 'wpforms-litewpformsphp',
145
+ 'name' => 'WPForms',
146
+ 'desc' => sprintf( esc_html__( '%s allows you to create beautiful contact forms, feedback form, subscription forms, payment forms, and other types of forms for your site in minutes, not hours!', 'optin-monster-api' ), 'WPForms' ),
147
  'url' => 'https://downloads.wordpress.org/plugin/wpforms-lite.zip',
148
  'pro' => array(
149
  'plugin' => 'wpforms-premium/wpforms.php',
150
+ 'name' => 'WPForms Pro',
151
  'url' => 'https://www.wpforms.com/?utm_source=proplugin&utm_medium=pluginheader&utm_campaign=pluginurl&utm_content=7%2E0%2E0',
152
  ),
153
  ),
optin-monster-wp-api.php CHANGED
@@ -5,7 +5,7 @@
5
  * Description: OptinMonster is the best WordPress popup plugin that helps you grow your email list and sales with email popups, exit intent popups, floating bars and more!
6
  * Author: OptinMonster Team
7
  * Author URI: https://optinmonster.com
8
- * Version: 1.9.10
9
  * Text Domain: optin-monster-api
10
  * Domain Path: languages
11
  * WC requires at least: 3.2.0
@@ -62,7 +62,7 @@ class OMAPI {
62
  *
63
  * @var string
64
  */
65
- public $version = '1.9.10';
66
 
67
  /**
68
  * The name of the plugin.
5
  * Description: OptinMonster is the best WordPress popup plugin that helps you grow your email list and sales with email popups, exit intent popups, floating bars and more!
6
  * Author: OptinMonster Team
7
  * Author URI: https://optinmonster.com
8
+ * Version: 1.9.11
9
  * Text Domain: optin-monster-api
10
  * Domain Path: languages
11
  * WC requires at least: 3.2.0
62
  *
63
  * @var string
64
  */
65
+ public $version = '1.9.11';
66
 
67
  /**
68
  * The name of the plugin.
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: marketing, popups, popup builder, newsletter, conversion, optin forms, for
4
  Requires at least: 4.7.0
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.3
7
- Stable tag: 1.9.10
8
  License: GNU General Public License v2.0 or later
9
 
10
  Create popups, opt-in forms, & floating bars to get more email newsletter subscribers, leads, and increase sales conversion - #1 marketing popup plugin.
@@ -471,6 +471,10 @@ Syed Balkhi
471
 
472
  **Most Recent Changes:**
473
 
 
 
 
 
474
  = 1.9.10 =
475
  * New Gutenberg block for embedding inline campaigns.
476
  * Improved syncing of data between the OptinMonster app and the WordPress plugin to help with shortcode parsing, and adding/removing campaigns when going live or pausing. Will also retain previously saved Output Settings when un-pausing a campaign and refreshing.
@@ -514,8 +518,4 @@ Syed Balkhi
514
  * Update the OptinMonster API JS URL.
515
  * Update trustpulse menu title.
516
 
517
- = 1.9.6 =
518
- * You can now use Gravity Forms AJAX submissions and form validation with your OptinMonster campaigns.
519
- * Update admin notices to use the recommended classes
520
-
521
  **[View entire changelog](https://plugins.svn.wordpress.org/optinmonster/trunk/CHANGELOG.md)**
4
  Requires at least: 4.7.0
5
  Tested up to: 5.4.2
6
  Requires PHP: 5.3
7
+ Stable tag: 1.9.11
8
  License: GNU General Public License v2.0 or later
9
 
10
  Create popups, opt-in forms, & floating bars to get more email newsletter subscribers, leads, and increase sales conversion - #1 marketing popup plugin.
471
 
472
  **Most Recent Changes:**
473
 
474
+ = 1.9.11 =
475
+ * Fixed a bug that caused too many redirects in the admin when clicking on certain plugin settings links.
476
+ * Removed a plugin action link that was not used.
477
+
478
  = 1.9.10 =
479
  * New Gutenberg block for embedding inline campaigns.
480
  * Improved syncing of data between the OptinMonster app and the WordPress plugin to help with shortcode parsing, and adding/removing campaigns when going live or pausing. Will also retain previously saved Output Settings when un-pausing a campaign and refreshing.
518
  * Update the OptinMonster API JS URL.
519
  * Update trustpulse menu title.
520
 
 
 
 
 
521
  **[View entire changelog](https://plugins.svn.wordpress.org/optinmonster/trunk/CHANGELOG.md)**
views/about.php CHANGED
@@ -2,14 +2,14 @@
2
  <div class="omapi-box omapi-box--flex">
3
  <div class="omapi-box__half">
4
  <p><strong><?php esc_html_e( 'Over the years, we found that many businesses struggle to collect emails simply because the tools aren’t easy to use and are far too expensive. So we started with a simple goal: build powerful enterprise-level technology to help businesses grow their customer base and revenue.', 'optin-monster-api' ); ?></strong></p>
5
- <p><?php esc_html_e( 'Since our launch in 2013, we have been improving conversions for small independent businesses to Fortune 500 companies. Over a billion people see a website with OptinMonster on it every month. Our customers are seeing huge increases in their subscriber growth and overall sales', 'optin-monster-api' ); ?></p>
6
  <p><?php esc_html_e( 'We are humbly considered thought leaders by many in our space because of our rapid growth and innovations. Whatever the market conditions or current trends, you will always find OptinMonster leading the way to help our customers gain competitive business advantage and stay ahead of the curve.', 'optin-monster-api' ); ?></p>
7
  </div>
8
  <div class="omapi-box__half">
9
  <div class="omapi-box__image">
10
  <img src="<?php echo esc_url( $this->url . 'assets/images/omteam.jpg' ); ?>" alt="OptinMonster Team">
11
  <div class="omapi-box__image-subtitle">
12
- <?php printf( esc_html__( 'The %1$s Team: %2$s', 'optin-monster-api' ), 'OptinMonster', 'Syed, Christina, Muneeb, Keri, Pranaya, Anna, Tommy, Thomas, Justin, Rahul, Erica, Ben, Devin, Calista, Brandon,Jonathan, Briana' ); ?>
13
  </div>
14
  </div>
15
  </div>
2
  <div class="omapi-box omapi-box--flex">
3
  <div class="omapi-box__half">
4
  <p><strong><?php esc_html_e( 'Over the years, we found that many businesses struggle to collect emails simply because the tools aren’t easy to use and are far too expensive. So we started with a simple goal: build powerful enterprise-level technology to help businesses grow their customer base and revenue.', 'optin-monster-api' ); ?></strong></p>
5
+ <p><?php esc_html_e( 'Since our launch in 2013, we have been improving conversions for small independent businesses to Fortune 500 companies. Over a billion people see a website with OptinMonster on it every month. Our customers are seeing huge increases in their subscriber growth and overall sales.', 'optin-monster-api' ); ?></p>
6
  <p><?php esc_html_e( 'We are humbly considered thought leaders by many in our space because of our rapid growth and innovations. Whatever the market conditions or current trends, you will always find OptinMonster leading the way to help our customers gain competitive business advantage and stay ahead of the curve.', 'optin-monster-api' ); ?></p>
7
  </div>
8
  <div class="omapi-box__half">
9
  <div class="omapi-box__image">
10
  <img src="<?php echo esc_url( $this->url . 'assets/images/omteam.jpg' ); ?>" alt="OptinMonster Team">
11
  <div class="omapi-box__image-subtitle">
12
+ <?php printf( esc_html__( 'The %1$s Team: %2$s', 'optin-monster-api' ), 'OptinMonster', 'Syed, Christina, Muneeb, Keri, Pranaya, Anna, Tommy, Thomas, Justin, Rahul, Erica, Ben, Devin, Calista, Brandon, Jonathan, Briana' ); ?>
13
  </div>
14
  </div>
15
  </div>