Popups, Welcome Bar, Optins and Lead Generation Plugin – Icegram - Version 2.1.0

Version Description

  • New: Added countdown timer feature [PRO]

=

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 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 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
7
- * Tested up to: 5.8.2
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.7' );
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 ( ( ! empty( $campaign->rules_summary['when']['from'] ) && current_time( 'timestamp' ) > strtotime( $campaign->rules_summary['when']['from'] . " 00:00:00" ) ) && ( ! empty( $campaign->rules_summary['when']['to'] ) && strtotime( $campaign->rules_summary['when']['to'] . " 23:59:59" ) > current_time( 'timestamp' ) ) ) {
133
- return true;
 
 
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: popup, optin, hellobar, 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.8.2
7
- Stable tag: 2.0.7
8
  License: GPLv3
9
 
10
- The best WP popup plugin that lets 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.
11
 
12
  == Description ==
13
 
14
- Icegram is the best plugin to easily create **beautiful optins and call to actions of your choice, show them to targeted visitors and convert them to customers and fans**.
15
 
16
- Icegram eliminates the need to hire a developer. You can easily set it up within minutes and start recording results right away.
17
 
18
- Icegram is full-featured, easy to use, trusted by **40,000+** users.
19
 
20
- Create **unlimited popups of every type** you need and customize every popup from theme and position to targeting and cookies.
 
 
21
 
22
  [youtube https://youtu.be/PVzg7BpYkSo]
23
 
24
- = The Only Multi-Purpose Plugin - a lot beyond optins =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
 
26
- Icegram is not the typical optin / list-building / email subscription plugin. You can do a lot more than that along with optins!
27
 
28
- * **Easily Grow Your Subscriber List:** Show attention-grabbing, high converting email opt-in forms and build your subscriber list.
29
 
30
- * **Instantly Drive Traffic:** Display powerful call to action (CTA) buttons and drive visitors to any page you like.
31
 
32
- * **Start Engaging and Converting Visitors:** Grab visitors’ attention, make an announcement, engage them to reduce bounce rate or offer them any other call to action.
33
 
34
- = Get Multiple Message Styles - popups, header bars and much more =
35
 
36
- Icegram provides not one or two, but four different optin types - **Lightbox Popups, Header & Footer Action Bars, Toast Notifications and Slide-in Messengers.**
37
 
38
- > 1️⃣ **Well Timed Popups -** Create time targeted popups/lightboxes that are optimized for conversion. Lots of customization possible.
39
 
40
- > 2️⃣ **Sleek Action Bars -** Great for announcements, lead generation, and CTAs. Icegram provides both header bars as well as footer bars.
41
 
42
- > 3️⃣ **Attention-Grabbing Toast Notifications -** Super useful for alerts, invitations, and multi-step CTAs.
43
 
44
- > 4️⃣ **Appealing Slide-in Messengers -** Welcome new visitors, recommend blog posts, provide links to support resources and more with slide-in messengers.
45
 
 
46
 
47
- If you want more, Icegram also provides eight more innovative message styles - Sidebars, Overlays, After / Before Post and Inlines, Stickies, Badges, Ribbons, Tabs & Interstitials in premium plans. [ Check the premium plans here.](https://www.icegram.com/pricing/)
48
 
49
- #### **Features Of Icegram**
50
 
51
- > ➡️ Easy to use, user-friendly interface
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
- #### **Powerful Features Of Icegram Premium**
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
 
71
- > 👉 [Split Testing](https://www.icegram.com/split-testing/) - Split test Icegram campaigns and decide which variation works best for your audience.
72
 
73
- > 👉 [Behavior Triggers and Advanced Targeting](https://www.icegram.com/page-level-targeting/) - Show and hide campaigns based on visitors on-page behavior. Like on Exit Intent, Scroll Position, Time Delay, JavaScript, On-click of another message…
74
 
75
- > 👉 [Geo Targeting](https://www.icegram.com/geo-targeting/) - target optins based on visitor's location - continent, country, city, region or IP address
76
 
77
- > 👉 [CTA Actions](https://www.icegram.com/cta-actions/) - Open link in a new window, submit form, AJAX submission, show another message, hide this message... New actions for CTA buttons
78
 
79
- > 👉 [Remote](https://www.icegram.com/documentation/how-to-show-icegram-message-on-remote-sites/) - Show Icegram messages on Non - WordPress sites.
80
 
81
- > 👉 [Analytics and Reporting](https://www.icegram.com/documentation/track-analytics-icegram/): View conversion and impression analytics of all campaigns and messages
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
 
83
- > 👉 **Additional optin types** - Overlay, Inline, Sidebars, Interstitial, Ribbons, Stickies, Badges, Tabs
84
 
85
- > 👉 **Exit Intent**: Target abandoning visitors by showing popups and other messages when they are about to exit your site
86
 
87
- > 👉 VIP Support
88
 
89
- **Create an Optin Form within minutes. No Need to Hire a Developer!**
90
 
91
- Icegram is easy and you don’t need a developer to figure this out. Icegram lets you create optins and CTA messages in under a minute. You can choose from a variety of optin types, customize it as per your liking and target it instantly. Creating an Icegram message is very simple and you don’t need technical knowledge to get it to work.
92
 
93
- **Choose from Beautiful, Mobile Responsive Design Templates**
94
 
95
- Icegram provides you with **20 high converting** and very responsive design templates. You can customize the colors of these design templates to match the color palette of your brand/ website.
96
 
97
- **Start Growing Your Email Subscriber List Instantly**
98
 
99
- Icegram optins ** specializes in converting visitors to subscribers**. Icegram allows you to create high converting subscriber forms and target them strategically at various places on your website.
100
 
101
- **Increase Your Optin Conversions with Advanced, Powerful Display Targeting Rules**
102
 
103
- Well-targeted optins are a must. Thus, Icegram provides you various **advanced targeting optins.** It allows you to target visitors depending on various factors like:
104
 
105
- > ➡️ Page-level targeting
106
- > ➡️ Time-based targeting
107
- > ➡️ User-based targeting
108
- > ➡️ Device-based targeting ( 100% Mobile Responsive)
109
 
110
- **Measure Optins Performance based on Detailed Reports**
111
 
112
- The most important way of measuring the effect of an optin is checking out the analytics. Icegram provides an easy to understand but in-depth stats of how your optin is performing.
113
 
114
- **Convert Abandoning Visitors by Showing them Exit Intent Opt-ins**
115
 
116
- Icegram also gives you an excellent option to target optins at exit intent. This is available in Icegram’s paid addon - [Behavior Triggers and Advanced Targeting](https://www.icegram.com/addons/behavior-triggers-advanced-retargeting/). That is, you can show an optin just before the visitor is leaving your website. Such optins are highly converting and are mostly used by Top Internet Marketers to grow their lists.
117
 
118
- **Create and Test out Optin Variations using Split Testing (A/B Testing)**
119
 
120
- Icegram also has a premium addon [Split Testing](https://www.icegram.com/addons/split-testing/) which allows you to split test various aspects of the optins like - content, headlines, C, color, design templates, etc.
121
 
122
- **Easily integrate with your Email Marketing Service**
123
 
124
- Icegram provides an **easy HTML based integration** with Email Marketing Services like MailChimp, AWeber, Infusionsoft, GetResponse, ConstantContact, CampaignMonitor, ActiveCampaign, Emma, iContact, MailerLite, MailPoet, MadMimi, Klawoo, e-GOI, SendPress, Email Buddy, My Mail, etc.
125
- Any Email Marketing Service which provides an HTML form code can be easily integrated with any of Icegram’s O.
126
 
127
- **Also, Fully Compatible with Third-Party Plugins**
128
 
129
- Not just Email Marketing Services, Icegram is compatible with most third-party lead capture/form plugins, themes and CRM like - Jetpack, Gravity, Contact Form 7, Visual Form Builder and many others. Hence, causing no inconsistencies to your WordPress site.
130
 
131
- **Icegram vs Its Alternatives - Here’s what you need to know..**
132
 
133
  We compared Icegram with some similar plugins and here’s the complete one-on-one review.
134
 
135
- > 👉 [Sumo Me vs Icegram - Full Review](https://www.icegram.com/sumo-me-vs-icegram-comparison/)
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
- **Website, Demos, Shop, Social, Love**
141
 
142
- > ➡️ [Official Icegram website](https://www.icegram.com/)
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
- **What customers have to say about Icegram?**
149
 
150
- * 👉 **Great plugin for lead generation** -
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
- * 👉 **Great plugin and amazing customer service!** -
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
- * 👉 **Icegram is better than premium plugins! Trust me** -
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
- * 👉 **I have 20 Different Plugins across 3 websites but Icegram is my go-to plugin** -
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
- * 👉 **Icegram simplified things for a non-programmer like me** -
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
- * 👉 **I doubled my subscriber list with Icegram within 1 month** -
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
- **Help Fellow WordPressers by Writing a Review ❤️**
179
 
180
- If you like Icegram, please leave us a [⭐⭐⭐⭐⭐](https://wordpress.org/support/plugin/icegram/reviews/?filter=5#new-post) review and also spread the word about it via Facebook and Twitter. That helps fellow website owners assess Icegram easily and benefit from it!
 
 
 
 
 
 
181
 
182
  **Some of our other free plugins on WordPress.org**
183
 
184
- [Email Subscribers](https://wordpress.org/plugins/email-subscribers/) - complete newsletter plugin
 
 
185
 
186
- [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) - Best Forms Plugin on WordPress
187
 
188
- [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.
189
 
190
- [Smart Manager](https://wordpress.org/plugins/smart-manager-for-wp-e-commerce/) - Manage & Bulk edit Products, Orders & more..
 
 
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.7 =
246
 
247
- * Fix: Improved security related to XSS [Thanks to Patchstack team]
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]