Version Description
- New: Added countdown timer feature [PRO]
=
Download this release
Release Info
Developer | Icegram |
Plugin | Popups, Welcome Bar, Optins and Lead Generation Plugin – Icegram |
Version | 2.1.0 |
Comparing to | |
See all releases |
Code changes from version 2.0.7 to 2.1.0
- icegram.php +3 -3
- lite/class-icegram.php +2 -0
- lite/classes/class-icegram-campaign-admin.php +3 -0
- lite/classes/class-icegram-campaign.php +5 -2
- readme.txt +333 -113
icegram.php
CHANGED
@@ -3,8 +3,8 @@
|
|
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: 2.0
|
7 |
-
* Tested up to: 5.
|
8 |
* Author: icegram
|
9 |
* Author URI: https://www.icegram.com/
|
10 |
* Copyright (c) 2014-21 Icegram
|
@@ -122,7 +122,7 @@ if ( ! defined( 'IG_PLUGIN_FILE' ) ) {
|
|
122 |
}
|
123 |
|
124 |
if ( ! defined( 'IG_PLUGIN_VERSION' ) ) {
|
125 |
-
define( 'IG_PLUGIN_VERSION', '2.0
|
126 |
}
|
127 |
|
128 |
if ( ! defined( 'IG_PRODUCT_ID' ) ) {
|
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: 2.1.0
|
7 |
+
* Tested up to: 5.9.0
|
8 |
* Author: icegram
|
9 |
* Author URI: https://www.icegram.com/
|
10 |
* Copyright (c) 2014-21 Icegram
|
122 |
}
|
123 |
|
124 |
if ( ! defined( 'IG_PLUGIN_VERSION' ) ) {
|
125 |
+
define( 'IG_PLUGIN_VERSION', '2.1.0' );
|
126 |
}
|
127 |
|
128 |
if ( ! defined( 'IG_PRODUCT_ID' ) ) {
|
lite/class-icegram.php
CHANGED
@@ -1219,6 +1219,8 @@ if ( ! class_exists( 'Icegram' ) ) {
|
|
1219 |
$rule_value_retargeting_clicked = $campaign->get_rule_value( 'retargeting_clicked' );
|
1220 |
$message_data['retargeting_clicked'] = ! empty( $rule_value_retargeting_clicked['retargeting_clicked'] ) ? $rule_value_retargeting_clicked['retargeting_clicked'] : '';
|
1221 |
$message_data['expiry_time_clicked'] = ! empty( $rule_value_retargeting_clicked['retargeting_clicked'] ) ? $rule_value_retargeting_clicked['expiry_time_clicked'] : '';
|
|
|
|
|
1222 |
|
1223 |
}
|
1224 |
}
|
1219 |
$rule_value_retargeting_clicked = $campaign->get_rule_value( 'retargeting_clicked' );
|
1220 |
$message_data['retargeting_clicked'] = ! empty( $rule_value_retargeting_clicked['retargeting_clicked'] ) ? $rule_value_retargeting_clicked['retargeting_clicked'] : '';
|
1221 |
$message_data['expiry_time_clicked'] = ! empty( $rule_value_retargeting_clicked['retargeting_clicked'] ) ? $rule_value_retargeting_clicked['expiry_time_clicked'] : '';
|
1222 |
+
$message_data = apply_filters( 'icegram_get_message_data', $message_data, $campaign );
|
1223 |
+
|
1224 |
|
1225 |
}
|
1226 |
}
|
lite/classes/class-icegram-campaign-admin.php
CHANGED
@@ -360,6 +360,9 @@ public function campaign_data_tab_content($tabs) {
|
|
360 |
do_action( 'icegram_after_campaign_when_rule', $campaign_id, $campaign_target_rules );
|
361 |
?>
|
362 |
</div>
|
|
|
|
|
|
|
363 |
<div class="options_group" id="campaign_target_rules_device">
|
364 |
<p class="form-field">
|
365 |
<label class="options_header"><?php _e( 'Device?', 'icegram' ); ?></label>
|
360 |
do_action( 'icegram_after_campaign_when_rule', $campaign_id, $campaign_target_rules );
|
361 |
?>
|
362 |
</div>
|
363 |
+
<?php
|
364 |
+
do_action( 'icegram_additional_campaign_rules', $campaign_id, $campaign_target_rules );
|
365 |
+
?>
|
366 |
<div class="options_group" id="campaign_target_rules_device">
|
367 |
<p class="form-field">
|
368 |
<label class="options_header"><?php _e( 'Device?', 'icegram' ); ?></label>
|
lite/classes/class-icegram-campaign.php
CHANGED
@@ -57,6 +57,7 @@ if ( ! class_exists( 'Icegram_Campaign' ) ) {
|
|
57 |
'expiry_time_clicked' => ( ! empty( $this->rules['retargeting_clicked'] ) ) ? $this->rules['expiry_time_clicked'] : ''
|
58 |
);
|
59 |
|
|
|
60 |
}
|
61 |
|
62 |
add_filter( 'icegram_campaign_validation', array( $this, '_is_valid_user_roles' ), 10, 3 );
|
@@ -129,8 +130,10 @@ if ( ! class_exists( 'Icegram_Campaign' ) ) {
|
|
129 |
if ( ! empty( $campaign->rules_summary['when']['when'] ) && $campaign->rules_summary['when']['when'] == 'always' ) {
|
130 |
return true;
|
131 |
}
|
132 |
-
if (
|
133 |
-
|
|
|
|
|
134 |
}
|
135 |
|
136 |
return false;
|
57 |
'expiry_time_clicked' => ( ! empty( $this->rules['retargeting_clicked'] ) ) ? $this->rules['expiry_time_clicked'] : ''
|
58 |
);
|
59 |
|
60 |
+
$this->rules_summary = apply_filters( 'icegram_rules_summary', $this->rules_summary, $this->rules );
|
61 |
}
|
62 |
|
63 |
add_filter( 'icegram_campaign_validation', array( $this, '_is_valid_user_roles' ), 10, 3 );
|
130 |
if ( ! empty( $campaign->rules_summary['when']['when'] ) && $campaign->rules_summary['when']['when'] == 'always' ) {
|
131 |
return true;
|
132 |
}
|
133 |
+
if ( ! empty( $campaign->rules_summary['when']['when'] ) && $campaign->rules_summary['when']['when'] == 'schedule' ) {
|
134 |
+
if ( ( current_time( 'timestamp' ) > strtotime( $campaign->rules_summary['when']['from'] . " 00:00:00" ) ) && ( strtotime( $campaign->rules_summary['when']['to'] . " 23:59:59" ) > current_time( 'timestamp' ) ) ) {
|
135 |
+
return true;
|
136 |
+
}
|
137 |
}
|
138 |
|
139 |
return false;
|
readme.txt
CHANGED
@@ -1,195 +1,411 @@
|
|
1 |
=== Popups, Welcome Bar, Optins and Lead Generation Plugin - Icegram ===
|
2 |
Contributors: icegram, storeapps, niravmehta, sandhyam, malayladu, putler, kishanranawat, asmipatel
|
3 |
Donate link: https://www.icegram.com/
|
4 |
-
Tags:
|
5 |
Requires at least: 3.9
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 2.0
|
8 |
License: GPLv3
|
9 |
|
10 |
-
The best
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
-
Icegram
|
15 |
|
16 |
-
Icegram
|
17 |
|
18 |
-
Icegram
|
19 |
|
20 |
-
|
|
|
|
|
21 |
|
22 |
[youtube https://youtu.be/PVzg7BpYkSo]
|
23 |
|
24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
29 |
|
30 |
-
|
31 |
|
32 |
-
|
33 |
|
34 |
-
|
35 |
|
36 |
-
|
37 |
|
38 |
-
|
39 |
|
40 |
-
|
41 |
|
42 |
-
|
43 |
|
44 |
-
|
45 |
|
|
|
46 |
|
47 |
-
|
48 |
|
49 |
-
|
50 |
|
51 |
-
|
52 |
-
> ➡️ Easily create and target unlimited opt-in forms and messages
|
53 |
-
> ➡️ Multiple Different Opt-in Form / Message Styles: Popups, Header / Footer bars, Toast notifications, Slide-in Messengers.
|
54 |
-
> ➡️ Multiple Theme Designs: Extensive range of beautiful and fully customizable themes to make your CTA messages and email opt-in popups look amazing
|
55 |
-
> ➡️ Easy Integrations with Email Marketing Service: [Email Subscribers](https://wordpress.org/plugins/email-subscribers/), MailChimp, Constant Contact, AWeber, Campaign Monitor, GetResponse, InfusionSoft, and all other email marketing services
|
56 |
-
> ➡️ Mobile Responsive design
|
57 |
-
> ➡️ Time and sequence different messages
|
58 |
-
> ➡️ Multiple display positions - top, middle, bottom, left, right, center
|
59 |
-
> ➡️ Powerful Display Targeting Rules: Decide where and when to show your campaigns and opt-in forms- On specific pages, categories or posts; to certain users; on a specific schedule, via shortcode - and many other rules.
|
60 |
-
> ➡️ Track results of each optin form
|
61 |
-
> ➡️ Extensive Customization for power users - custom HTML, CSS, JS option; extensive JavaScript API; make it suit your needs
|
62 |
-
> ➡️ Unique Headline Generator that creates engaging headlines - so you get a copywriting headstart
|
63 |
-
> ➡️ No compulsion to show Icegram name or branding
|
64 |
-
> ➡️ No need to create an account on our site to use Icegram
|
65 |
-
> ➡️ Automatic Updates
|
66 |
-
> ➡️ Friendly and Professional Support Team
|
67 |
-
> ➡️ Plus a lot more!!
|
68 |
|
69 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
70 |
|
71 |
-
|
72 |
|
73 |
-
|
74 |
|
75 |
-
|
76 |
|
77 |
-
|
78 |
|
79 |
-
|
80 |
|
81 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
-
|
84 |
|
85 |
-
|
86 |
|
87 |
-
|
88 |
|
89 |
-
|
90 |
|
91 |
-
|
92 |
|
93 |
-
|
94 |
|
95 |
-
|
96 |
|
97 |
-
|
98 |
|
99 |
-
|
100 |
|
101 |
-
|
102 |
|
103 |
-
|
104 |
|
105 |
-
|
106 |
-
> ➡️ Time-based targeting
|
107 |
-
> ➡️ User-based targeting
|
108 |
-
> ➡️ Device-based targeting ( 100% Mobile Responsive)
|
109 |
|
110 |
-
|
111 |
|
112 |
-
|
113 |
|
114 |
-
|
115 |
|
116 |
-
|
117 |
|
118 |
-
|
119 |
|
120 |
-
|
121 |
|
122 |
-
|
123 |
|
124 |
-
|
125 |
-
Any Email Marketing Service which provides an HTML form code can be easily integrated with any of Icegram’s O.
|
126 |
|
127 |
-
|
128 |
|
129 |
-
|
130 |
|
131 |
-
**Icegram vs Its Alternatives
|
132 |
|
133 |
We compared Icegram with some similar plugins and here’s the complete one-on-one review.
|
134 |
|
135 |
-
|
136 |
-
> 👉 [Optin Monster vs Icegram - Complete Feature Analysis](https://www.icegram.com/optinmonster-vs-icegram-comparison/)
|
137 |
-
> 👉 [Ninja Popups vs Icegram - Plugin Faceoff](https://www.icegram.com/ninja-popups-vs-icegram-the-better-popup-and-why/)
|
138 |
-
> 👉 [Hellobar vs Icegram - Comparative Analysis ](https://www.icegram.com/hello-bar-vs-icegram/)
|
139 |
|
140 |
-
|
141 |
|
142 |
-
|
143 |
-
> ➡️ [Dozens of Demos](https://www.icegram.com/demos/) of different Icegram messages
|
144 |
-
> ➡️ [Shop for Icegram Premium](https://www.icegram.com/pricing/)
|
145 |
-
> ➡️ [A few customer reviews](https://www.icegram.com/customers/)
|
146 |
-
> ➡️ Follow Icegram on Twitter [@icegram](https://twitter.com/icegram/)
|
147 |
|
148 |
-
|
149 |
|
150 |
-
|
151 |
-
> We’ve been using Icegram as well as the compatible Email- and Newsletter plugin from Icegram for blog subscription and lead generation forms. It’s easy to set up and it does what it’s supposed to do. Thank you!
|
152 |
-
> - [IrinaT](https://wordpress.org/support/topic/great-plugin-for-lead-generation/)
|
153 |
|
154 |
-
|
155 |
-
> The plugin is great for both people with or without coding knowledge, the max upgrade gives you any kind of addition you may need for the best targeting. I had a little issue and the customer service was super understanding and helpful.
|
156 |
-
> - [anahow](https://wordpress.org/support/topic/great-plugin-and-amazing-customer-service-2/)
|
157 |
|
158 |
-
|
159 |
-
> I have used premium plugins too. But this plugin is better than premium one!
|
160 |
-
> So many options, customizations, and best support! I am using this plugin on both of my websites ;)
|
161 |
-
> - [princegift2892](https://profiles.wordpress.org/princegift2892)
|
162 |
|
163 |
-
|
164 |
-
> There are plenty of similar plug-ins like this on WordPress, but none of them provide as much bang for the buck as Icegram.
|
165 |
-
> I have, I'm guessing, 20 different plugins across 3 websites and this is **my go-to plugin to drive downloads of my e-books**.
|
166 |
-
> I especially like the A/B split testing feature. And the customer support has been very prompt. Five stars for sure.
|
167 |
-
> - [JamieTurner1313](https://wordpress.org/support/topic/one-of-the-best-plugins-ive-used-3) from 60 Second Marketer
|
168 |
|
169 |
-
|
170 |
-
> Icegram simplified things for a non-programmer startup entrepreneur like me and has become a tool I recommend to everyone else. It’s a **wonderfully productive On-site Retargeting > Plugin!** And it's free. In one week of using Icegram, our **bounce rate went down significantly** and visitor’s time on site went up.
|
171 |
-
> - [varunjadhav](https://profiles.wordpress.org/varunjadhav)
|
172 |
|
173 |
-
|
174 |
-
> One month into using the icegram, and the **number of subscribers doubled**. This plugin is great. Icegram messages have given me **phenomenal 60% click-through rates** and it > never fails to deliver. When you use Icegram, **you don't need to learn all those marketing secrets.. Icegram does that for you…**
|
175 |
-
> - [infinity80](https://profiles.wordpress.org/infinity80)
|
176 |
|
|
|
177 |
|
178 |
-
|
179 |
|
180 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
|
182 |
**Some of our other free plugins on WordPress.org**
|
183 |
|
184 |
-
[Email Subscribers](https://wordpress.org/plugins/email-subscribers/)
|
|
|
|
|
185 |
|
186 |
-
[
|
187 |
|
188 |
-
[
|
189 |
|
190 |
-
[
|
|
|
|
|
191 |
|
192 |
-
[Offermative](https://wordpress.org/plugins/offermative-discount-pricing-related-products-upsell-funnels-for-woocommerce/) - Dynamic discount pricing, related product recommendations, upsells and funnels for WooCommerce.
|
193 |
|
194 |
== Installation ==
|
195 |
|
@@ -242,12 +458,16 @@ Contact Us, provide as much detail of the problem as you can. We will try to sol
|
|
242 |
|
243 |
== Upgrade Notice ==
|
244 |
|
245 |
-
= 2.0
|
246 |
|
247 |
-
*
|
248 |
|
249 |
== Changelog ==
|
250 |
|
|
|
|
|
|
|
|
|
251 |
**2.0.7 (08.12.2021)**
|
252 |
|
253 |
* Fix: Improved security related to XSS [Thanks to Patchstack team]
|
1 |
=== Popups, Welcome Bar, Optins and Lead Generation Plugin - Icegram ===
|
2 |
Contributors: icegram, storeapps, niravmehta, sandhyam, malayladu, putler, kishanranawat, asmipatel
|
3 |
Donate link: https://www.icegram.com/
|
4 |
+
Tags: popup, optin, hellobar, lead capture, form
|
5 |
Requires at least: 3.9
|
6 |
+
Tested up to: 5.9.0
|
7 |
+
Stable tag: 2.1.0
|
8 |
License: GPLv3
|
9 |
|
10 |
+
The best WordPress popup plugin that lets you create popups and action bars within seconds. Customize exit-intent popup campaigns, action bars, badges, stickies, inline optin, fullscreen overlay, ribbons, sidebar panel and more in no time.
|
11 |
|
12 |
== Description ==
|
13 |
|
14 |
+
### Icegram Engage: Best WordPress Marketing & Popup Plugin
|
15 |
|
16 |
+
[Icegram](https://www.icegram.com/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) is the popular result-driven WordPress popup maker that helps website owners and bloggers grow their email lists seamlessly. Capture leads using beautiful popups, slide-ins, optin, welcome bars and more without learning to code.
|
17 |
|
18 |
+
With the Icegram popup builder plugin, you can set up exit-intent popup campaigns, action bars, badges, stickies, inline optin, fullscreen overlay, ribbons, sidebar panel and more in no time. Automate your lead generation campaigns for free with Icegram’s intuitive workflow that works with most of the widely used WordPress themes in the market.
|
19 |
|
20 |
+
Icegram Engage comes with different types of lead capture widgets and readymade templates to easily build your lead generation campaign. All built-in widgets and pre-built gallery themes listed in the template grid are responsive across all devices.
|
21 |
+
|
22 |
+
Join creating unlimited popups and CTA bars with 40,000+ smart users across the globe.
|
23 |
|
24 |
[youtube https://youtu.be/PVzg7BpYkSo]
|
25 |
|
26 |
+
### What is Icegram Popup Builder?
|
27 |
+
|
28 |
+
To be short, Icegram popup builder is a powerful lead capturing WordPress plugin that helps bloggers & website owners convert their web visitors into potential leads.
|
29 |
+
|
30 |
+
At Icegram, we have 50+ free high-converting popup templates & action bar themes to automate your marketing campaigns quickly. Eliminate the concept of building your lead generation and newsletter subscription box from scratch. Build unlimited popup campaigns with the pre-built templates and marketing headline copy suggestions today.
|
31 |
+
|
32 |
+
Not just a traditional popup plugin. With Icegram Engage you can
|
33 |
+
|
34 |
+
- **Convince and Convert** raw web visitors into loyal customers with our precisely crafted marketing templates
|
35 |
+
|
36 |
+
- **Welcome or direct your website visitors** with the header and footer bars elegantly
|
37 |
+
|
38 |
+
- **Communicate with your real customers** by sending them to the appropriate support page or landing page
|
39 |
+
|
40 |
+
- **Introduce powerful CTA** - Call To Action elements to attract your audience to take prompt action
|
41 |
+
|
42 |
+
- **Reduce the bounce rate** of your WordPress website by providing relevant resources and lead magnets that your audiences love
|
43 |
+
|
44 |
+
- **Gamify your content** by providing interactive trick or treat mini-game inline content and retain more customers with the coupon codes
|
45 |
+
|
46 |
+
- **Stick notifications/updates** in the form of beautiful sticky notes and grab the attention of your visitors
|
47 |
+
|
48 |
+
- **Create urgency and FOMO** by displaying sales info using actionable hello bars
|
49 |
+
|
50 |
+
Don’t spend huge on marketing campaigns to drive new leads for your brand next time. Leverage the existing potential website visitors and acquire quality leads without spending a dime. Icegram popup maker helps bloggers build their newsletter subscription list effortlessly and improves returning loyal visitors to their blog strategically.
|
51 |
+
|
52 |
+
★★★★★
|
53 |
+
> <strong> 👉 Great plugin for lead generation </strong><br />
|
54 |
+
>We’ve been using Icegram as well as the compatible Email- and Newsletter plugin from Icegram for blog subscription and lead generation forms. It’s easy to set up and it does what it’s supposed to do. Thank you! - [IrinaT](https://wordpress.org/support/topic/great-plugin-for-lead-generation/)
|
55 |
+
|
56 |
+
Learn how to install the Icegram plugin and get started - [Installation Guide](https://www.icegram.com/documentation/how-to-install-icegram/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
57 |
+
View all documentation to harness the power of optins - [Knowledge Base](https://www.icegram.com/knowledgebase_category/icegram/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
58 |
+
|
59 |
+
### People trust Icegram's Free Popup Maker because...
|
60 |
+
|
61 |
+
Icegram Engage free popup maker is one of the earliest marketing plugins trusted by more than 40,000+ real users across the planet. It has helped many brands and bloggers automate their smart marketing campaigns with our well-structured documentation and timely support.
|
62 |
+
|
63 |
+
Icegram WordPress popup addon is widely trusted by smart entrepreneurs because
|
64 |
+
|
65 |
+
- Totally free to use - One of the top optin plugins in the WordPress repository
|
66 |
+
|
67 |
+
- Robust real human support - Even for free users
|
68 |
+
|
69 |
+
- Growth focused templates - Saves huge time
|
70 |
+
|
71 |
+
- No design or development skill required
|
72 |
+
|
73 |
+
- Dedicated product documentation and video tutorials
|
74 |
+
|
75 |
+
- Helpful blog posts to grow any business online
|
76 |
+
|
77 |
+
- Bullet-proof security-focused plugin code structure
|
78 |
+
|
79 |
+
- Non-intrusive lead capturing campaigns
|
80 |
+
|
81 |
+
- User experience focused triggers and transitions
|
82 |
+
|
83 |
+
- Compatible with the latest WordPress version
|
84 |
+
|
85 |
+
- Works seamlessly with any WordPress themes
|
86 |
+
|
87 |
+
- GDPR Compliant
|
88 |
+
|
89 |
+
Here’s what brands and individuals say about the Icegram marketing plugin
|
90 |
+
|
91 |
+
★★★★★
|
92 |
+
> <strong> 👉 Great Tool, Great Support </strong><br />
|
93 |
+
>To my surprise, even for the free version, I can benefit for most of the features. I especially appreciate the technical support you have provided. You are the best. - [swan](https://wordpress.org/support/topic/great-tool-great-support-22/)
|
94 |
+
|
95 |
+
★★★★★
|
96 |
+
> <strong> 👉 Great tool to get attention! </strong><br />
|
97 |
+
>This tool is helping us keep our organization alive and well in the Covid 19 pandemic. Thanks for making it so easy for us to spread the word to our members. Plus it is easy to use and the free themes are fun to help fit our messages as we need them. - [mimdoc](https://wordpress.org/support/topic/great-tool-to-get-attention/)
|
98 |
+
|
99 |
+
★★★★★
|
100 |
+
> <strong> 👉 Wonderful plugin </strong><br />
|
101 |
+
>I discovered Icegram’s plugins at the start of 2020. I have tried many related plugins.
|
102 |
+
I ended up buying two of Icegram’s plugins.
|
103 |
+
Very impressed. - [oneirishrover](https://wordpress.org/support/topic/wonderful-plugin-568/)
|
104 |
+
|
105 |
+
★★★★★
|
106 |
+
> <strong> 👉 Great, flexible plugin </strong><br />
|
107 |
+
>Worked great with my theme. I was able to add a call to action footer bar on my homepage. I can’t believe all the customizations you can do for free. I was even able to add shortcode to the bottom bar and it worked beautifully. - [ddmccaleb](https://wordpress.org/support/topic/great-flexible-plugin-13/)
|
108 |
+
|
109 |
+
Check more reviews about the Icegram Engage WordPress plugin - [Ratings & Testimonials](https://www.icegram.com/customers/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
110 |
+
|
111 |
+
### What are the features that make the Icegram optin plugin more productive?
|
112 |
+
|
113 |
+
Icegram Engage responsive lead capture plugin comes with growth-focused features without any bloats. It is one of the best companions for WordPress webmasters and marketers to grow their businesses smartly. And this makes Icegram the best WordPress popup plugin around.
|
114 |
+
|
115 |
+
Here are some of the popular Icegram features to consider when setting up your marketing campaigns
|
116 |
+
|
117 |
+
1. Sleek user interface and elegant design
|
118 |
+
|
119 |
+
2. Mobile responsive image popup templates and themes
|
120 |
+
|
121 |
+
3. Integrates with top email marketing platforms
|
122 |
+
|
123 |
+
4. Unlimited popup and lead acquisition campaigns
|
124 |
+
|
125 |
+
5. Different types of popups and optins that works
|
126 |
+
|
127 |
+
6. Multiple display rules and targetting options
|
128 |
+
|
129 |
+
7. 50+ high converting popups and action bars
|
130 |
+
|
131 |
+
8. Eye-catchy popup animations
|
132 |
+
|
133 |
+
9. Advanced customization option for power users
|
134 |
+
|
135 |
+
10. Compatible with latest WPML plugin
|
136 |
+
|
137 |
+
11. Use shortcodes to easily display campaigns
|
138 |
+
|
139 |
+
12. Lazy load option to align with the cache system
|
140 |
+
|
141 |
+
13. Don’t force users to show our plugin name on popups
|
142 |
+
|
143 |
+
14. Duplicate your existing campaigns in a single click
|
144 |
+
|
145 |
+
15. Smart retargeting options to improve user experience
|
146 |
+
|
147 |
+
Check Icegram Engage’s [official features page](https://www.icegram.com/all-features/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) for detailed info.
|
148 |
+
|
149 |
+
#### 1. Sleek user interface and elegant design
|
150 |
+
|
151 |
+
Create unlimited free popups and hello bar-styled CTAs with the kid-friendly user interface. A simple and clean structured WordPress admin dashboard area with essential settings is given.
|
152 |
+
|
153 |
+
#### 2. Mobile responsive templates and themes
|
154 |
+
|
155 |
+
Readymade templates that are available in the Icegram gallery are mobile responsive and work well on any device screen seamlessly.
|
156 |
+
|
157 |
+
#### 3. Integrates with top email marketing platforms
|
158 |
+
|
159 |
+
Icegram optin plugin is capable of integrating with all popular ESPs - Email Service Providers. Some of the top ESPs that Icegram supports are
|
160 |
+
|
161 |
+
- [Email Subscribers](https://wordpress.org/plugins/email-subscribers/),
|
162 |
+
|
163 |
+
- MailChimp,
|
164 |
+
|
165 |
+
- Constant Contact,
|
166 |
+
|
167 |
+
- AWeber,
|
168 |
+
|
169 |
+
- Campaign Monitor,
|
170 |
+
|
171 |
+
- GetResponse,
|
172 |
+
|
173 |
+
- InfusionSoft
|
174 |
+
|
175 |
+
- ConstantContact,
|
176 |
+
|
177 |
+
- ActiveCampaign,
|
178 |
+
|
179 |
+
- Emma,
|
180 |
+
|
181 |
+
- iContact,
|
182 |
+
|
183 |
+
- MailerLite,
|
184 |
+
|
185 |
+
- MailPoet,
|
186 |
+
|
187 |
+
- MadMimi,
|
188 |
+
|
189 |
+
- Klawoo,
|
190 |
+
|
191 |
+
- e-GOI,
|
192 |
+
|
193 |
+
- SendPress,
|
194 |
+
|
195 |
+
- Email Buddy,
|
196 |
+
|
197 |
+
- My Mail,
|
198 |
+
|
199 |
+
- Pepipost,
|
200 |
+
|
201 |
+
- AWS,
|
202 |
+
|
203 |
+
- Mailgun,
|
204 |
+
|
205 |
+
- Sendgrid,
|
206 |
+
|
207 |
+
- Postmark,
|
208 |
+
|
209 |
+
- Sparkpost,
|
210 |
+
|
211 |
+
- and other ESPs that provide HTML code to users.
|
212 |
+
|
213 |
+
Setup your autoresponders to automate your email campaigns whenever a new lead arrives.
|
214 |
+
|
215 |
+
#### 4. Unlimited popup and lead acquisition campaigns
|
216 |
+
|
217 |
+
Unlike other WordPress lead capture tools, the Icegram optin plugin allows website owners to create unlimited lead acquisition campaigns without any restriction. Unleash the power of a true free WP optin plugin.
|
218 |
+
|
219 |
+
#### 5. Different types of popups and opt-ins that works
|
220 |
+
|
221 |
+
Create and launch different kinds of popups and opt-ins such as well-timed popups, lightbox subscription boxes, action bars, slide-in messengers, toast notifications, multi-step CTAs, floating buttons and more for free.
|
222 |
+
|
223 |
+
#### 6. Multiple display rules and targetting options
|
224 |
+
|
225 |
+
Show your campaign messages and popups to the entire website or on specific pages that need attention. Also, decide which device visitors should see the campaign such as mobile, tablet and PC. Schedule a campaign with a specific interval of time to display the campaign at the right time automatically.
|
226 |
+
|
227 |
+
#### 7. 50+ high converting popups and action bars
|
228 |
+
|
229 |
+
Icegram free plugin comes with 50+ high converting popups and optins for growing your business in no time. Never spend huge time on building a popup from the scratch. Cut the developer and designer cost today.
|
230 |
+
|
231 |
+
Checkout all templates and demo of Icegram here - [Template Gallery](https://www.icegram.com/demos/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
232 |
+
|
233 |
+
#### 8. Eye-catchy popup animations
|
234 |
+
|
235 |
+
Make your popup, messages and action bars more appealing to your website visitors by adding an animation to your campaign.
|
236 |
+
|
237 |
+
#### 9. Advanced customization option for power users
|
238 |
+
|
239 |
+
Users can apply custom CSS and JS code to the campaign without installing any third-party plugin. Customize your campaign with the personalized custom code smartly.
|
240 |
|
241 |
+
#### 10. Compatible with the latest WPML plugin
|
242 |
|
243 |
+
Icegram WordPress popup plugin is fully compatible with the latest WPML plugin. Thus, it helps webmasters encourage their regional audience with their regional language content.
|
244 |
|
245 |
+
#### 11. Use shortcodes to easily display campaigns
|
246 |
|
247 |
+
Place the shortcodes to display the messages, inline campaigns, CTAs and popups on any specific page or blog post precisely.
|
248 |
|
249 |
+
#### 12. Lazy load option to align with the cache system
|
250 |
|
251 |
+
Use the “Lazy Load” option to load Icegram campaigns once the website default scripts ran. Avoid conflicts when running any scripts beforehand with this simple tweak.
|
252 |
|
253 |
+
#### 13. Don’t force users to show our plugin name on popups
|
254 |
|
255 |
+
Icegram plugin doesn’t force users to display the branding of our product on the campaign you follow. Most of the popular plugins out there in the space force users to display their brand under the “powered by” section. Icegram is open-source and doesn’t force users to showcase the plugin brand.
|
256 |
|
257 |
+
#### 14. Duplicate your existing campaigns in a single click
|
258 |
|
259 |
+
Icegram plugin allows users to duplicate the campaigns that were created before to save time on repetitive tasks. A single click can duplicate the existing messages and campaigns.
|
260 |
|
261 |
+
#### 15. Smart retargeting options to improve user experience
|
262 |
|
263 |
+
To improve the website visitor experience, Icegram allows the website owners to choose when to showcase the campaign again. It can be also done when a web visitor engages by hitting any CTA buttons as well. From sessions, days to years, one can retarget the audience with the same campaign.
|
264 |
|
265 |
+
### Powerful Features of Icegram Premium
|
266 |
|
267 |
+
Beyond the free limit, Icegram provides various advanced features for website owners who opt for [Icegram Premium](https://www.icegram.com/pricing/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo). Here are some of the premium features of the Icegram Engage plugin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
|
269 |
+
1. **Quick analytics to track campaign performance -** Track the campaign performance with the precise impression and conversion stat
|
270 |
+
|
271 |
+
2. **Best exit-intent popup campaigns -** Convince abandoning website visitors to stay for a long period by triggering exit intent and delayed popup campaigns
|
272 |
+
|
273 |
+
3. **100+ premium templates with improved UI -** Build stunning popups, bars, CTAs, better notification bars, alerts and more with the exclusive premium templates
|
274 |
+
|
275 |
+
4. **10+ advanced campaign animations and transitions -** Entertain website visitors with more flawless animations and grab attention
|
276 |
+
|
277 |
+
5. **Experiment A/B testing campaigns -** Setup A/B testing campaigns and see which version of the campaign works better for your audience
|
278 |
+
|
279 |
+
6. **Showcase your messages using non-intrusive stickies -** Create eye-catchy elegant sticky notes and pin them on your website to stand out from the crowd
|
280 |
+
|
281 |
+
7. **Show your Icegram messages on Non-WordPress websites -** Display your messages and popup campaigns to any non WordPress website with our Remote feature
|
282 |
+
|
283 |
+
8. **Target optins based on geo-location -** Target your campaigns based on visitors’ location, continent, country, city, region or IP address effortlessly.
|
284 |
|
285 |
+
Introduce fullscreen popups to optimize your campaign for better conversion. Interstitial messages bring more leads to your campaign as well.
|
286 |
|
287 |
+
[Premium Icegram Plugin](https://www.icegram.com/pricing/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) | [Marketing Blog](https://www.icegram.com/blog/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) | [Support Help Desk](https://www.icegram.com/contact/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
288 |
|
289 |
+
### Icegram's Result-Driven Lead Generation tool used by
|
290 |
|
291 |
+
Icegram Engage lead generation WordPress plugin is widely used by smart people around every sector. Also, Icegram act as an AdBlock proof, it runs seamlessly on any browser when an AdBlock extension is active.
|
292 |
|
293 |
+
Some of the popular niches using the IG Engage tool are listed below
|
294 |
|
295 |
+
- Bloggers
|
296 |
+
|
297 |
+
- Entrepreneurs
|
298 |
+
|
299 |
+
- Business consultants
|
300 |
+
|
301 |
+
- Store owners
|
302 |
+
|
303 |
+
- Journalists
|
304 |
+
|
305 |
+
- Health sectors
|
306 |
+
|
307 |
+
- Developers
|
308 |
+
|
309 |
+
- Agencies
|
310 |
+
|
311 |
+
- Fitness mentors
|
312 |
+
|
313 |
+
- Affiliate marketers
|
314 |
|
315 |
+
#### ✔️ Lead optin for bloggers
|
316 |
|
317 |
+
Smart bloggers use various Icegram’s lead optins and popup campaigns to build their email list faster.
|
318 |
|
319 |
+
#### ✔️ Business messages for entrepreneurs
|
320 |
|
321 |
+
Business owners and product founders leverage the power of Icegram messages, header and footer action bar to showcase notifications.
|
322 |
|
323 |
+
#### ✔️ Call back for business consultants
|
324 |
|
325 |
+
Business consultants and independent freelancers use Icegram’s call-back sticky tab messages to drive leads to their business.
|
326 |
|
327 |
+
#### ✔️ Retaining coupons for store owners
|
328 |
|
329 |
+
eCommerce store owners [WooCommerce] use exit intent campaigns to win back abandoning shoppers with the exclusive coupon codes. Use trick or treat and easter egg gamification messages to retain customers.
|
330 |
|
331 |
+
#### ✔️ Action bars for journalist websites
|
332 |
|
333 |
+
Journalist and news aggregator website owners display their subscription or critical announcement effortlessly with the Icegram email widget, action bars and alerts.
|
334 |
|
335 |
+
#### ✔️ Review modules for health sectors
|
336 |
|
337 |
+
Health sectors place a review section message to collect feedback from people and use them as social proof on their website.
|
|
|
|
|
|
|
338 |
|
339 |
+
#### ✔️ Advanced blocks for developers
|
340 |
|
341 |
+
Power users customize Icegram popups, bars, messages and alerts with their personalized custom CSS and JS code.
|
342 |
|
343 |
+
#### ✔️ Non-intrusive popups for agencies
|
344 |
|
345 |
+
Creative agencies handling multiple websites prefer user-friendly popups to align with user experience.
|
346 |
|
347 |
+
#### ✔️ Lead magnets for fitness gurus
|
348 |
|
349 |
+
Fitness coaches use lead magnets to attract clients to their website. Icegram’s powerful popups, messages, inline widgets, action bars and more help them drive quality leads.
|
350 |
|
351 |
+
#### ✔️ CTAs for affiliate marketers
|
352 |
|
353 |
+
Affiliate marketers build their Icegram popup and CTAs to direct their potential website buyers to the partner website without any hassle.
|
|
|
354 |
|
355 |
+
Icegram WordPress plugin is suitable for everyone who loves to drive more traffic and leads.
|
356 |
|
357 |
+
Some of the major use cases are narrated here - [Icegram Use Case](https://www.icegram.com/demos/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) [best pop up examples included]
|
358 |
|
359 |
+
**Icegram vs Its Alternatives – Here’s what you need to know…**
|
360 |
|
361 |
We compared Icegram with some similar plugins and here’s the complete one-on-one review.
|
362 |
|
363 |
+
💡 [Sumo Me vs Icegram – Full Review](https://www.icegram.com/sumo-me-vs-icegram-comparison/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
|
|
|
|
|
|
364 |
|
365 |
+
💡 [Optin Monster vs Icegram – Complete Feature Analysis](https://www.icegram.com/optinmonster-vs-icegram-comparison/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
366 |
|
367 |
+
💡 [Ninja Popups vs Icegram – Plugin Faceoff](https://www.icegram.com/ninja-popups-vs-icegram-the-better-popup-and-why/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
|
|
|
|
|
|
|
|
368 |
|
369 |
+
💡 [Hellobar vs Icegram – Comparative Analysis](https://www.icegram.com/hello-bar-vs-icegram/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
370 |
|
371 |
+
### Icegram's successful journey includes
|
|
|
|
|
372 |
|
373 |
+
We have had a great journey so far. You can take a look
|
|
|
|
|
374 |
|
375 |
+
🏆 8 successful years in the market
|
|
|
|
|
|
|
376 |
|
377 |
+
🏆 40,000+ active installs and counting
|
|
|
|
|
|
|
|
|
378 |
|
379 |
+
🏆 2000+ premium customers
|
|
|
|
|
380 |
|
381 |
+
🏆 300+ ⭐⭐⭐⭐⭐ ratings on WordPress support forum
|
|
|
|
|
382 |
|
383 |
+
🏆 3+ real human premium support executive
|
384 |
|
385 |
+
🏆 1500+ support tickets closed in 6 months
|
386 |
|
387 |
+
And more to come! Icegram is working on adding goal-based features constantly.
|
388 |
+
|
389 |
+
Let’s Socialize: [Facebook Page](https://www.facebook.com/icegram/) | [Twitter Handle](https://twitter.com/icegram) | [YouTube Channel](https://www.youtube.com/user/storeapps)
|
390 |
+
|
391 |
+
★★★★★
|
392 |
+
> <strong> 👉 Great - even for a novice! </strong><br />
|
393 |
+
>Easy to use plugin that even a novice can figure out. Very pleased with the various features this plugin offers. - [JConstantin99](https://wordpress.org/support/topic/great-even-for-a-novice/)
|
394 |
|
395 |
**Some of our other free plugins on WordPress.org**
|
396 |
|
397 |
+
➡ [Email Subscribers](https://wordpress.org/plugins/email-subscribers/) – Complete newsletter plugin
|
398 |
+
|
399 |
+
➡ [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) – Best Forms Plugin on WordPress
|
400 |
|
401 |
+
➡ [Temporary Login Without Password](https://wordpress.org/plugins/temporary-login-without-password/) – It’s a handy tool to support our customers. We use it daily.
|
402 |
|
403 |
+
➡ [Smart Manager](https://wordpress.org/plugins/smart-manager-for-wp-e-commerce/) – Manage & Bulk edit Products, Orders & more...
|
404 |
|
405 |
+
➡ [Offermative](https://wordpress.org/plugins/offermative-discount-pricing-related-products-upsell-funnels-for-woocommerce/) – Dynamic discount pricing, related product recommendations, upsells and funnels for WooCommerce.
|
406 |
+
|
407 |
+
[Signup for Free](https://www.icegram.com/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) | [Resources](https://www.icegram.com/blog/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) | [Knowledge Base](https://www.icegram.com/knowledgebase_category/icegram/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo) | [Contact Support](https://www.icegram.com/contact/?utm_source=repo&utm_medium=wpreadme&utm_campaign=icegram_engage_repo)
|
408 |
|
|
|
409 |
|
410 |
== Installation ==
|
411 |
|
458 |
|
459 |
== Upgrade Notice ==
|
460 |
|
461 |
+
= 2.1.0 =
|
462 |
|
463 |
+
* New: Added countdown timer feature [PRO]
|
464 |
|
465 |
== Changelog ==
|
466 |
|
467 |
+
**2.1.0 (27.01.2022)**
|
468 |
+
|
469 |
+
* New: Added countdown timer feature [PRO]
|
470 |
+
|
471 |
**2.0.7 (08.12.2021)**
|
472 |
|
473 |
* Fix: Improved security related to XSS [Thanks to Patchstack team]
|