Version Description
Bug Fix release
Download this release
Release Info
Developer | Icegram |
Plugin | Popups, Welcome Bar, Optins and Lead Generation Plugin – Icegram |
Version | 1.10.30.1 |
Comparing to | |
See all releases |
Code changes from version 1.10.30 to 1.10.30.1
- classes/class-icegram-message-admin.php +7 -4
- icegram.php +2 -2
- readme.txt +7 -1
classes/class-icegram-message-admin.php
CHANGED
@@ -274,10 +274,13 @@ if ( !class_exists( 'Icegram_Message_Admin' ) ) {
|
|
274 |
<label class="message_label"> </label>
|
275 |
<?php
|
276 |
$form_embed_html = '';
|
277 |
-
$
|
278 |
-
|
|
|
|
|
279 |
|
280 |
-
|
|
|
281 |
//Add Rainmaker form
|
282 |
$rm_html = __("Add form embed code") .'<strong>'. __(" or easily embed using ", "icegram" ). '<a style="font-style:normal;" href="' . admin_url("plugin-install.php?tab=search&type=term&s=icegram-rainmaker") .'" target="_blank" alt="Rainmaker - Forms, Leads and CRM">Icegram\'s Rainmaker' . '</a> plugin </strong>';
|
283 |
$rm_html = (true === $force_use_rm ) ? $rm_html : '';
|
@@ -297,7 +300,7 @@ if ( !class_exists( 'Icegram_Message_Admin' ) ) {
|
|
297 |
|
298 |
//Add Email Subscribers form
|
299 |
$es_html = __("Add form embed code") .'<strong>'. __(" or easily embed using ", "icegram" ). '<a style="font-style:normal;" href="' . admin_url("plugin-install.php?tab=search&type=term&s=email-subscribers") .'" target="_blank" alt="Email Subscribers & Newsletters">Email Subscribers & Newsletters' . '</a> plugin </strong>';
|
300 |
-
if(in_array('email-subscribers/email-subscribers.php', $active_plugins)){
|
301 |
$es_form_list = ES_DB_Forms::get_forms_id_name_map();
|
302 |
$es_html = __("Use Email Subscribers form ", "icegram" );
|
303 |
$es_html .= '<select class="es_form_list" style="max-width:30%" name="message_data['. $message_id .'][es_form_code]">
|
274 |
<label class="message_label"> </label>
|
275 |
<?php
|
276 |
$form_embed_html = '';
|
277 |
+
$force_use_rm = false;
|
278 |
+
if( in_array('email-subscribers/email-subscribers.php', $active_plugins) ){
|
279 |
+
$es_plugin_meta_data = get_plugin_data( WP_PLUGIN_DIR . '/email-subscribers/email-subscribers.php' );
|
280 |
+
$es_current_version = ! empty( $es_plugin_meta_data['Version'] ) ? $es_plugin_meta_data['Version'] : '';
|
281 |
|
282 |
+
$force_use_rm = ( version_compare( $es_current_version, '4.0', '<' )) ? true : false;
|
283 |
+
}
|
284 |
//Add Rainmaker form
|
285 |
$rm_html = __("Add form embed code") .'<strong>'. __(" or easily embed using ", "icegram" ). '<a style="font-style:normal;" href="' . admin_url("plugin-install.php?tab=search&type=term&s=icegram-rainmaker") .'" target="_blank" alt="Rainmaker - Forms, Leads and CRM">Icegram\'s Rainmaker' . '</a> plugin </strong>';
|
286 |
$rm_html = (true === $force_use_rm ) ? $rm_html : '';
|
300 |
|
301 |
//Add Email Subscribers form
|
302 |
$es_html = __("Add form embed code") .'<strong>'. __(" or easily embed using ", "icegram" ). '<a style="font-style:normal;" href="' . admin_url("plugin-install.php?tab=search&type=term&s=email-subscribers") .'" target="_blank" alt="Email Subscribers & Newsletters">Email Subscribers & Newsletters' . '</a> plugin </strong>';
|
303 |
+
if( in_array('email-subscribers/email-subscribers.php', $active_plugins) && !$force_use_rm ){
|
304 |
$es_form_list = ES_DB_Forms::get_forms_id_name_map();
|
305 |
$es_html = __("Use Email Subscribers form ", "icegram" );
|
306 |
$es_html .= '<select class="es_form_list" style="max-width:30%" name="message_data['. $message_id .'][es_form_code]">
|
icegram.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Icegram - Popups, Optins, CTAs & lot more...
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: All in one solution to inspire, convert and engage your audiences. Action bars, Popup windows, Messengers, Toast notifications and more. Awesome themes and powerful rules.
|
6 |
-
* Version: 1.10.30
|
7 |
* Author: icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Copyright (c) 2014-19 Icegram
|
@@ -36,7 +36,7 @@ class Icegram {
|
|
36 |
global $ig_feedback, $ig_tracker;
|
37 |
$feedback_version = '1.0.5';
|
38 |
|
39 |
-
$this->version = "1.10.30";
|
40 |
$this->shortcode_instances = array();
|
41 |
$this->mode = 'local';
|
42 |
$this->plugin_url = untrailingslashit( plugins_url( '/', __FILE__ ) );
|
3 |
* Plugin Name: Icegram - Popups, Optins, CTAs & lot more...
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: All in one solution to inspire, convert and engage your audiences. Action bars, Popup windows, Messengers, Toast notifications and more. Awesome themes and powerful rules.
|
6 |
+
* Version: 1.10.30.1
|
7 |
* Author: icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Copyright (c) 2014-19 Icegram
|
36 |
global $ig_feedback, $ig_tracker;
|
37 |
$feedback_version = '1.0.5';
|
38 |
|
39 |
+
$this->version = "1.10.30.1";
|
40 |
$this->shortcode_instances = array();
|
41 |
$this->mode = 'local';
|
42 |
$this->plugin_url = untrailingslashit( plugins_url( '/', __FILE__ ) );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.icegram.com/
|
|
4 |
Tags: popup, wordpress popups,Exit-popup, optin-popup, popups, hellobar, optin, lead capture, form, marketing, notification, messenger, targeting, monster, ninja ,wordpress lead generation, wordpress lightbox optin, wordpress lightbox optin form, wordpress lightbox optins, wordpress mobile optin forms, wordpress mobile popup, wordpress mobile popups, wordpress optin form, wordpress overlay popup, wordpress popup, wordpress popup form, wordpress popup plugin, wordpress popup solution, wordpress popups , popups, subscribe, wp popups, optin bars, action grabber, promotion, popup message, leads, lists, builder, action bar, floating bar, footer bar, hellobar alternative, pop over, Popup plugin, aweber, campaign monitor, constant contact, email list, exit-intent, onclick popup, analytics, Hubspot, popup ads, pop-up, Mailing list pop-up, re-targeting, Animation,Popups with Animation ,Responsive Popup, split testing, AB testing
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.2.2
|
7 |
-
Stable tag: 1.10.30
|
8 |
License: GPLv3
|
9 |
|
10 |
The best WP popup plugin that let's you create a popup within seconds. Customize popup, target popups to show offers, email signups, social buttons etc and instantly increase conversions on your website.
|
@@ -217,6 +217,9 @@ Contact Us, provide as much detail of the problem as you can. We will try to sol
|
|
217 |
5. Target your Icegram message using these display rules
|
218 |
|
219 |
== Upgrade Notice ==
|
|
|
|
|
|
|
220 |
= 1.10.28.2 =
|
221 |
Bug Fix release
|
222 |
|
@@ -465,6 +468,9 @@ Initial Release
|
|
465 |
|
466 |
|
467 |
== Changelog ==
|
|
|
|
|
|
|
468 |
= 1.10.30 =
|
469 |
* New: [Email Subscribers & Newsletters](https://wordpress.org/plugins/email-subscribers/) is the recommended method of adding forms in Icegram
|
470 |
|
4 |
Tags: popup, wordpress popups,Exit-popup, optin-popup, popups, hellobar, optin, lead capture, form, marketing, notification, messenger, targeting, monster, ninja ,wordpress lead generation, wordpress lightbox optin, wordpress lightbox optin form, wordpress lightbox optins, wordpress mobile optin forms, wordpress mobile popup, wordpress mobile popups, wordpress optin form, wordpress overlay popup, wordpress popup, wordpress popup form, wordpress popup plugin, wordpress popup solution, wordpress popups , popups, subscribe, wp popups, optin bars, action grabber, promotion, popup message, leads, lists, builder, action bar, floating bar, footer bar, hellobar alternative, pop over, Popup plugin, aweber, campaign monitor, constant contact, email list, exit-intent, onclick popup, analytics, Hubspot, popup ads, pop-up, Mailing list pop-up, re-targeting, Animation,Popups with Animation ,Responsive Popup, split testing, AB testing
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 5.2.2
|
7 |
+
Stable tag: 1.10.30.1
|
8 |
License: GPLv3
|
9 |
|
10 |
The best WP popup plugin that let's you create a popup within seconds. Customize popup, target popups to show offers, email signups, social buttons etc and instantly increase conversions on your website.
|
217 |
5. Target your Icegram message using these display rules
|
218 |
|
219 |
== Upgrade Notice ==
|
220 |
+
= 1.10.30.1 =
|
221 |
+
Bug Fix release
|
222 |
+
|
223 |
= 1.10.28.2 =
|
224 |
Bug Fix release
|
225 |
|
468 |
|
469 |
|
470 |
== Changelog ==
|
471 |
+
= 1.10.30.1 =
|
472 |
+
*Fix: Fatal error 'ES_DB_Forms' class not found.
|
473 |
+
|
474 |
= 1.10.30 =
|
475 |
* New: [Email Subscribers & Newsletters](https://wordpress.org/plugins/email-subscribers/) is the recommended method of adding forms in Icegram
|
476 |
|