Version Description
Revised Gallery Templates for halloween
Download this release
Release Info
Developer | Icegram |
Plugin | Popups, Welcome Bar, Optins and Lead Generation Plugin – Icegram |
Version | 1.10.33 |
Comparing to | |
See all releases |
Code changes from version 1.10.32 to 1.10.33
- assets/images/ig-offer.png +0 -0
- assets/images/pre-halloween-2019.png +0 -0
- icegram.php +8 -8
- ig-offer.php +2 -2
- readme.txt +8 -2
assets/images/ig-offer.png
DELETED
Binary file
|
assets/images/pre-halloween-2019.png
ADDED
Binary file
|
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.
|
7 |
* Author: icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Copyright (c) 2014-19 Icegram
|
@@ -37,7 +37,7 @@ class Icegram {
|
|
37 |
$feedback_version = '1.0.8';
|
38 |
$ig_tracker = 'IG_Tracker_V_' . str_replace('.', '_', $feedback_version);
|
39 |
|
40 |
-
$this->version = "1.10.
|
41 |
$this->shortcode_instances = array();
|
42 |
$this->mode = 'local';
|
43 |
$this->plugin_url = untrailingslashit( plugins_url( '/', __FILE__ ) );
|
@@ -175,23 +175,23 @@ class Icegram {
|
|
175 |
echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $ig_rating_text . ' <a style="float:right" class="ig-admin-btn ig-admin-btn-secondary" href="?ig_dismiss_admin_notice=1&option_name=ig_star_review">' . __( 'No, I don\'t like it', 'icegram' ) . '</a></p></div>';
|
176 |
}
|
177 |
//star review end
|
178 |
-
//
|
179 |
$timezone_format = _x('Y-m-d', 'timezone date format');
|
180 |
$ig_current_date = strtotime(date_i18n($timezone_format));
|
181 |
-
$ig_offer_start = strtotime("
|
182 |
-
$ig_offer_end = strtotime("
|
183 |
if(($ig_current_date >= $ig_offer_start) && ($ig_current_date <= $ig_offer_end)) {
|
184 |
include_once('ig-offer.php');
|
185 |
}
|
186 |
-
//
|
187 |
|
188 |
}
|
189 |
public function dismiss_admin_notice(){
|
190 |
if(isset($_GET['ig_dismiss_admin_notice']) && $_GET['ig_dismiss_admin_notice'] == '1' && isset($_GET['ig_option_name'])){
|
191 |
$option_name = sanitize_text_field( $_GET['ig_option_name'] );
|
192 |
update_option($option_name.'_icegram', true);
|
193 |
-
if($option_name === '
|
194 |
-
header("Location: https://www.icegram.com
|
195 |
exit();
|
196 |
}else{
|
197 |
$referer = wp_get_referer();
|
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.33
|
7 |
* Author: icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Copyright (c) 2014-19 Icegram
|
37 |
$feedback_version = '1.0.8';
|
38 |
$ig_tracker = 'IG_Tracker_V_' . str_replace('.', '_', $feedback_version);
|
39 |
|
40 |
+
$this->version = "1.10.33";
|
41 |
$this->shortcode_instances = array();
|
42 |
$this->mode = 'local';
|
43 |
$this->plugin_url = untrailingslashit( plugins_url( '/', __FILE__ ) );
|
175 |
echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $ig_rating_text . ' <a style="float:right" class="ig-admin-btn ig-admin-btn-secondary" href="?ig_dismiss_admin_notice=1&option_name=ig_star_review">' . __( 'No, I don\'t like it', 'icegram' ) . '</a></p></div>';
|
176 |
}
|
177 |
//star review end
|
178 |
+
//pre-halloween 2019 :start
|
179 |
$timezone_format = _x('Y-m-d', 'timezone date format');
|
180 |
$ig_current_date = strtotime(date_i18n($timezone_format));
|
181 |
+
$ig_offer_start = strtotime("2019-10-15");
|
182 |
+
$ig_offer_end = strtotime("2019-10-17");
|
183 |
if(($ig_current_date >= $ig_offer_start) && ($ig_current_date <= $ig_offer_end)) {
|
184 |
include_once('ig-offer.php');
|
185 |
}
|
186 |
+
//pre-halloween 2019 :end
|
187 |
|
188 |
}
|
189 |
public function dismiss_admin_notice(){
|
190 |
if(isset($_GET['ig_dismiss_admin_notice']) && $_GET['ig_dismiss_admin_notice'] == '1' && isset($_GET['ig_option_name'])){
|
191 |
$option_name = sanitize_text_field( $_GET['ig_option_name'] );
|
192 |
update_option($option_name.'_icegram', true);
|
193 |
+
if($option_name === 'ig_offer_pre_halloween_done_2019'){
|
194 |
+
header("Location: https://www.icegram.com/?utm_source=in_app&utm_medium=ig_banner&utm_campaign=pre-halloween-2019");
|
195 |
exit();
|
196 |
}else{
|
197 |
$referer = wp_get_referer();
|
ig-offer.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
if( get_option('
|
3 |
?>
|
4 |
<style type="text/css">
|
5 |
.ig_offer{
|
@@ -10,5 +10,5 @@
|
|
10 |
}
|
11 |
</style>
|
12 |
<div class="ig_offer">
|
13 |
-
<a target="_blank" href="?ig_dismiss_admin_notice=1&ig_option_name=
|
14 |
</div>
|
1 |
<?php
|
2 |
+
if( get_option('ig_offer_pre_halloween_done_2019_icegram') == 1 ) return;
|
3 |
?>
|
4 |
<style type="text/css">
|
5 |
.ig_offer{
|
10 |
}
|
11 |
</style>
|
12 |
<div class="ig_offer">
|
13 |
+
<a target="_blank" href="?ig_dismiss_admin_notice=1&ig_option_name=ig_offer_pre_halloween_done_2019"><img src="<?php echo $this->plugin_url ?>/assets/images/pre-halloween-2019.png" /></a>
|
14 |
</div>
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: icegram, storeapps, niravmehta, sandhyam, putler
|
|
3 |
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.
|
7 |
-
Stable tag: 1.10.
|
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.32 =
|
221 |
Added new featured gallery items
|
222 |
|
@@ -474,6 +477,9 @@ Initial Release
|
|
474 |
|
475 |
|
476 |
== Changelog ==
|
|
|
|
|
|
|
477 |
= 1.10.32 =
|
478 |
* New: Added featured gallery items
|
479 |
|
3 |
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.4
|
7 |
+
Stable tag: 1.10.33
|
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.33 =
|
221 |
+
Revised Gallery Templates for halloween
|
222 |
+
|
223 |
= 1.10.32 =
|
224 |
Added new featured gallery items
|
225 |
|
477 |
|
478 |
|
479 |
== Changelog ==
|
480 |
+
= 1.10.33 =
|
481 |
+
* Enhancement: Revised Gallery Templates for halloween
|
482 |
+
|
483 |
= 1.10.32 =
|
484 |
* New: Added featured gallery items
|
485 |
|