Popup by Supsystic - Version 1.8.9

Version Description

/ 14.03.2017 * Updated PHP Mailer library to latest version * Fix issues with some Facebook PopUp settings output * Possibility to disable PopUp Statistics * Fix possible issue with iframe without src in PopUp * Minor fix for SendGrid updated API integration

Download this release

Release Info

Developer supsystic.com
Plugin Icon 128x128 Popup by Supsystic
Version 1.8.9
Comparing to
See all releases

Code changes from version 1.9.1 to 1.8.9

config.php CHANGED
@@ -48,7 +48,7 @@
48
  define('PPS_EOL', "\n");
49
 
50
  define('PPS_PLUGIN_INSTALLED', true);
51
- define('PPS_VERSION', '1.9.1');
52
  define('PPS_USER', 'user');
53
 
54
  define('PPS_CLASS_PREFIX', 'ppsc');
48
  define('PPS_EOL', "\n");
49
 
50
  define('PPS_PLUGIN_INSTALLED', true);
51
+ define('PPS_VERSION', '1.8.9');
52
  define('PPS_USER', 'user');
53
 
54
  define('PPS_CLASS_PREFIX', 'ppsc');
js/admin.options.js CHANGED
@@ -301,7 +301,6 @@ function ppsInitStickyItem() {
301
  });
302
  }
303
  function ppsInitCustomCheckRadio(selector) {
304
- if(!jQuery.fn.iCheck) return;
305
  if(!selector)
306
  selector = document;
307
  jQuery(selector).find('input').iCheck('destroy').iCheck({
@@ -329,19 +328,15 @@ function ppsInitCustomCheckRadio(selector) {
329
  });
330
  }
331
  function ppsCheckDestroy(checkbox) {
332
- if(!jQuery.fn.iCheck) return;
333
  jQuery(checkbox).iCheck('destroy');
334
  }
335
  function ppsCheckDestroyArea(selector) {
336
- if(!jQuery.fn.iCheck) return;
337
  jQuery(selector).find('input[type=checkbox]').iCheck('destroy');
338
  }
339
  function ppsCheckUpdate(checkbox) {
340
- if(!jQuery.fn.iCheck) return;
341
  jQuery(checkbox).iCheck('update');
342
  }
343
  function ppsCheckUpdateArea(selector) {
344
- if(!jQuery.fn.iCheck) return;
345
  jQuery(selector).find('input[type=checkbox]').iCheck('update');
346
  }
347
  function ppsGetTxtEditorVal(id) {
301
  });
302
  }
303
  function ppsInitCustomCheckRadio(selector) {
 
304
  if(!selector)
305
  selector = document;
306
  jQuery(selector).find('input').iCheck('destroy').iCheck({
328
  });
329
  }
330
  function ppsCheckDestroy(checkbox) {
 
331
  jQuery(checkbox).iCheck('destroy');
332
  }
333
  function ppsCheckDestroyArea(selector) {
 
334
  jQuery(selector).find('input[type=checkbox]').iCheck('destroy');
335
  }
336
  function ppsCheckUpdate(checkbox) {
 
337
  jQuery(checkbox).iCheck('update');
338
  }
339
  function ppsCheckUpdateArea(selector) {
 
340
  jQuery(selector).find('input[type=checkbox]').iCheck('update');
341
  }
342
  function ppsGetTxtEditorVal(id) {
modules/popup/js/frontend.popup.js CHANGED
@@ -1,8 +1,7 @@
1
  var g_ppsWindowLoaded = false
2
  , g_ppsIsPageCached = false
3
  , g_ppsIsPageCachedChecked = false
4
- , g_ppsShowCallbacks = {}
5
- , g_ppsClks = {};
6
  jQuery(document).ready(function(){
7
  if(typeof(ppsPopupsFromFooter) !== 'undefined' && ppsPopupsFromFooter && ppsPopupsFromFooter.length) {
8
  ppsPopups = typeof(ppsPopups) === 'undefined' ? [] : ppsPopups;
@@ -50,12 +49,6 @@ jQuery(window).load(function(){
50
  }
51
  }
52
  });
53
- function _ppsAddPopUpClick( popupId, btn ) {
54
- g_ppsClks[ popupId ] = btn;
55
- }
56
- function _ppsGetPopUpClick( popupId ) {
57
- return g_ppsClks[ popupId ];
58
- }
59
  function _ppsCheckPopupOnFollowClk( lnk ) {
60
  var href = lnk.href
61
  , hash = lnk.hash
@@ -96,7 +89,6 @@ function _ppsBindOnElementClickPopups() {
96
  _ppsCheckPopupOnFollowClk( this );
97
  return true;
98
  }
99
- _ppsAddPopUpClick( popupId, this );
100
  if(!_ppsPopupBindDelay(popupId, 'show_on_click_on_el_delay', 'show_on_click_on_el_enb_delay')) {
101
  ppsShowPopup( popupId );
102
  }
@@ -122,7 +114,6 @@ function _ppsBindOnElementClickPopups() {
122
  .attr('title', str_replace(title, matched[0], ''))
123
  .click(function(){
124
  var popupId = jQuery(this).data('popup-id');
125
- _ppsAddPopUpClick( popupId, this );
126
  if(!_ppsPopupBindDelay(popupId, 'show_on_click_on_el_delay', 'show_on_click_on_el_enb_delay')) {
127
  ppsShowPopup( popupId );
128
  }
1
  var g_ppsWindowLoaded = false
2
  , g_ppsIsPageCached = false
3
  , g_ppsIsPageCachedChecked = false
4
+ , g_ppsShowCallbacks = {};
 
5
  jQuery(document).ready(function(){
6
  if(typeof(ppsPopupsFromFooter) !== 'undefined' && ppsPopupsFromFooter && ppsPopupsFromFooter.length) {
7
  ppsPopups = typeof(ppsPopups) === 'undefined' ? [] : ppsPopups;
49
  }
50
  }
51
  });
 
 
 
 
 
 
52
  function _ppsCheckPopupOnFollowClk( lnk ) {
53
  var href = lnk.href
54
  , hash = lnk.hash
89
  _ppsCheckPopupOnFollowClk( this );
90
  return true;
91
  }
 
92
  if(!_ppsPopupBindDelay(popupId, 'show_on_click_on_el_delay', 'show_on_click_on_el_enb_delay')) {
93
  ppsShowPopup( popupId );
94
  }
114
  .attr('title', str_replace(title, matched[0], ''))
115
  .click(function(){
116
  var popupId = jQuery(this).data('popup-id');
 
117
  if(!_ppsPopupBindDelay(popupId, 'show_on_click_on_el_delay', 'show_on_click_on_el_enb_delay')) {
118
  ppsShowPopup( popupId );
119
  }
modules/popup/mod.php CHANGED
@@ -8,8 +8,7 @@ class popupPps extends modulePps {
8
 
9
  public function init() {
10
  dispatcherPps::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
11
- $mainCheckActionName = (defined('WP_USE_THEMES') && WP_USE_THEMES) ? 'template_redirect' : 'get_header';
12
- add_action($mainCheckActionName, array($this, 'checkPopupShow'));
13
  add_shortcode(PPS_SHORTCODE_CLICK, array($this, 'showPopupOnClick'));
14
  add_action('wp_footer', array($this, 'collectFooterRender'), 0);
15
  add_filter('wp_nav_menu_objects', array($this, 'checkMenuItemsForPopUps'));
8
 
9
  public function init() {
10
  dispatcherPps::addFilter('mainAdminTabs', array($this, 'addAdminTab'));
11
+ add_action('template_redirect', array($this, 'checkPopupShow'));
 
12
  add_shortcode(PPS_SHORTCODE_CLICK, array($this, 'showPopupOnClick'));
13
  add_action('wp_footer', array($this, 'collectFooterRender'), 0);
14
  add_filter('wp_nav_menu_objects', array($this, 'checkMenuItemsForPopUps'));
pps.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Popup by Supsystic
4
  * Plugin URI: https://supsystic.com/plugins/popup-plugin/
5
  * Description: The Best WordPress popup plugin to help you gain more subscribers, social followers or advertisement. Responsive popups with friendly options
6
- * Version: 1.9.1
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  **/
3
  * Plugin Name: Popup by Supsystic
4
  * Plugin URI: https://supsystic.com/plugins/popup-plugin/
5
  * Description: The Best WordPress popup plugin to help you gain more subscribers, social followers or advertisement. Responsive popups with friendly options
6
+ * Version: 1.8.9
7
  * Author: supsystic.com
8
  * Author URI: https://supsystic.com
9
  **/
readme.txt CHANGED
@@ -1,46 +1,46 @@
1
  === Popup by Supsystic ===
2
  Contributors: supsystic.com
3
- Donate link: https://supsystic.com/plugins/popup-plugin
4
  Tags: popup, full screen popup, html popup, wordpress popup, popup contact form, popup builder, modal popup, video popup, youtube popup, social popup, facebook popup, christmas
5
  Tested up to: 4.7.3
6
- Stable tag: 1.9.1
7
 
8
  Popup by Supsystic the best way to convert visitors into subscribers, followers & customers. Create any type of popup with preset popup builder templates
9
 
10
  == Description ==
11
 
12
- [Popup by Supsystic](https://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=description&utm_campaign=popup "Popup WordPress Plugin") get more newsletter subscribers, promote new products, deliver special offers anf get more social followers.
13
 
14
  = Christmas special popup templates pack! =
15
 
16
- Grab visitors attention with Christmas templates. The highest conversion with positive amotions. More about [Christmas popup templates](https://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates").
17
 
18
  Popup types:
19
 
20
- * [Subscription / Mail List Building](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_127 "Mail List Building Popup")
21
- * [Contact Form](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_206 "Contact Form Popup")
22
- * [Facebook](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_104 "Facebook Popup")
23
- * [Video](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_103 "Video Popup")
24
- * [Social Buttons](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_186 "Social Buttons Popup")
25
- * [Full Screen](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_157 "Full Screen Popup")
26
- * [HTML](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_208 "HTML Popup")
27
- * [Notification Bar](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_157 "Notification Bar")
28
- * [Age Verivication](https://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_158 "Age Verification Popup")
29
 
30
  = Main Features =
31
 
32
- * 30+ Mobile-ready [Popup Templates](https://supsystic.com/popup-examples/ "WordPress Plugin Popup Templates")
33
- * [Popup Placement](https://supsystic.com/popup-placement/ "Popup Placement"). Modal Popup, Fullscreen Popup, Info Bar, Fly-in, Slide In Popup
34
- * [Popup Triggers](https://supsystic.com/displaying-popup-configuration/ "Popup Triggers"). When to show / close popup, whom to show, show on next pages, time to display
35
  * Different Popup types. Subscriptions, Contact Form, YouTube Popup, Google Maps, Full Screen, Image Popup, Login/Registration, Age Verification
36
 
37
  = More Popup Options =
38
 
39
- * [Optin, Social and Link Locks](https://supsystic.com/lock-content/ "Content Lock")
40
  * Subscription Services Integration (WordPress, MailChimp, Aweber and more)
41
- * [A/B Split Tests](https://supsystic.com/what-is-ab-testing/ "A / B Split Test")
42
- * [Real Time Statistic](https://supsystic.com/statistics/ "Real Time Popup Statistic")
43
- * [20+ Popup Opening Animations](https://supsystic.com/popup-opening-animations/ "Popup Openin Animation")
44
 
45
  = Popup Builder =
46
 
@@ -54,7 +54,7 @@ In order to make visitors feel comfortable with popup on the site, in our Popup
54
 
55
  = Layered Popup Style =
56
 
57
- Lots of first time popup users think where to place popup or at least how to place popuping popup as they want, because everybody understand that popup must be both gentle and appropriate. New technologies of popup builders and methodologies of popup masters inspired us to provide [Layered PopUp Style]( https://supsystic.com/popup-placement/
58
  "Layered PopUp Style").
59
 
60
  You can find this popup option following the pass: Popup plugin> Create new popup> Design> Popup Location. Here you see gratified Popup Layout with name of the site places for popup to appear.
@@ -100,7 +100,7 @@ Locking content with popup builder can be also successfully practised for shops
100
 
101
  = Popup Plugin Support =
102
 
103
- Popup Customers Support is the only one tool to help you survive in Popup Plugins World. [Contact us](https://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=contactus&utm_campaign=popup "Contact Us"), if your Popup Lifes come down or you need a Powerful Popup Advice from experienced Popup Backing Masters and your dreams come true!
104
 
105
  = Popup Translations =
106
 
@@ -181,11 +181,11 @@ To get more popup custom fields in new popup:
181
  * The default Popup fields (Name and Email) is stable. New Popup fields created independently in Popup – you can edit or delete in any moment.
182
 
183
  Save your New Popup changes to popup purchases.
184
- To know more detail of popup fields builder go [here](https://supsystic.com/subscribe-custom-fields-builder/ "here").
185
 
186
  = How to add Contact Form into Popup? =
187
 
188
- Supsystic [PopUp](https://supsystic.com/plugins/popup-plugin/ "PopUp") and [Contact Form](https://supsystic.com/plugins/contact-form-plugin/ "Contact Form") are lightly customizable. Beginners and Seniors will find advantages like user-friendly interface and a great number of functionality.
189
 
190
  Contact Form can be integrated in Popup by several clicks, while this popup builder mix will give you a great popuping result. With Popup plugin Contact Form will fascinate your eyes focus to make you rich popup site owner. Such Popup mutation can be inserted in anywhere on your site. Note, that all Popup functions of will be accessible in your Contact Form. It’s an ideal way for those clients who want to gather the emails of the users, but not popup subscribers.
191
 
@@ -224,9 +224,9 @@ Yes. Light compliant Popup plugin backup can close the Popup window, just set th
224
 
225
  == Screenshots ==
226
 
227
- 1. [Christmas popup templates pack](https://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates")
228
 
229
- 2. Subscription popup templates. All [Popup Examples](https://supsystic.com/popup-examples?utm_source=wordpress&utm_medium=second_screenshot&utm_campaign=popup "Popup Examples")
230
 
231
  3. Facebook like popup
232
 
@@ -238,7 +238,7 @@ Yes. Light compliant Popup plugin backup can close the Popup window, just set th
238
 
239
  7. Social Buttons and contact form with popup
240
 
241
- 8. [Popup WordPress plugin](https://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=first_screenshot&utm_campaign=popup "Popup WordPress plugin")
242
 
243
  == Other Notes ==
244
 
@@ -279,18 +279,6 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
279
 
280
  == Changelog ==
281
 
282
- = 1.9.1 / 11.04.2017
283
- * ActiveCampaign - fix Tags functionality
284
- * Minor issues fix
285
- * Code improvements
286
-
287
- = 1.9.0 / 23.03.2017
288
- * Possibility to show PopUp right near clicked element (or any other element on page)
289
- * Small code improvements
290
- * Access module improvements
291
- * Compatibility with other WordPress plugins, that modify/remove iCheck library
292
- * Compatibility with plugins/themes/WordPress setup when WP_USE_THEMES is not defined, or defined as "false"
293
-
294
  = 1.8.9 / 14.03.2017
295
  * Updated PHP Mailer library to latest version
296
  * Fix issues with some Facebook PopUp settings output
@@ -352,7 +340,7 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
352
  * Forgot Password link for Login PopUps functionality added
353
 
354
  = 1.8.2 / 29.11.2016 =
355
- * Added [Christmas popup templates pack](https://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates")
356
  * Minor issues fix
357
 
358
  = 1.8.1 / 23.11.2016 =
@@ -800,7 +788,7 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
800
  * Added new template "Girl"
801
  * Added Italian language
802
  * Fix of English language strings in the plugin code
803
- * Fix Custom Subscribe fields for Aweber - PRO https://supsystic.com/plugins/popup-plugin/
804
  * Fix Name field submit for MailChimp (added full value in submit request - with First Name and Last Name)
805
  * Correct translations for plugin Settings admin tab
806
  * Added hide for IPs list functionality
@@ -892,10 +880,10 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
892
  * Fixed popup conflict with Twig autoloaded re-defining in other plugins or themes
893
  * Facebook PopUp - correct language detection
894
  * Correct displaying usual embed iframes with Google Maps in PopUp
895
- * PRO popup - added options: Close only after action, after time passed - https://supsystic.com/plugins/popup-plugin/
896
- * PRO popup - added options: Show at the bottom of the page, after Inactivity, after User Comment option, after Purchasing (Checkout) - https://supsystic.com/plugins/popup-plugin/
897
- * PRO popup - Possibility to subscribe with Facebook - https://supsystic.com/plugins/popup-plugin/
898
- * PRO popup - Possibility to set user role for plugin usage (not just admin) - https://supsystic.com/plugins/popup-plugin/
899
  * Some popup minor spelling issues fix
900
  * Core popup code improvements
901
 
@@ -939,7 +927,7 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
939
  * Added popup link to documentation about usage code - HTML and CSS - editor
940
  * Correct popup process shortcode from any place (not only from post/page content) - sidebars, external themes/plugins, etc.
941
  * Minor fixes for base templates
942
- * PRO - On Exit functionality integration - https://supsystic.com/plugins/popup-plugin/
943
  * Fix issue - with multiple time showing when "On Click" mode is enabled and animation is added
944
  * Added usual posts to list where show or not popup
945
 
@@ -965,9 +953,9 @@ Working with adult site content, sometimes is needed to be sure kids not watchin
965
  * Main PopUp edit tabs sticky functionality - make it work with some standard notifications
966
  * Show PopUp label always on top of edit tabs on PopUp edit screen - more user-friendly
967
  * Option to show PopUp - after scroll window - right after scroll or with delay
968
- * Layered popup integration - https://supsystic.com/plugins/popup-plugin/
969
  * Additional popup modification for "Click On" show mode - to make sure it work with more content editor systems
970
- * A/B popup testing - tests should stay tests even after whole design change - fixed - https://supsystic.com/plugins/popup-plugin/
971
  * Admin popup list table - do not stick header line (call too much problems and don't need this)
972
  * Correct show popup on mobile devices - every size, every type
973
  * Fix sticky edit PopUp tabs scroll position
1
  === Popup by Supsystic ===
2
  Contributors: supsystic.com
3
+ Donate link: http://supsystic.com/plugins/popup-plugin
4
  Tags: popup, full screen popup, html popup, wordpress popup, popup contact form, popup builder, modal popup, video popup, youtube popup, social popup, facebook popup, christmas
5
  Tested up to: 4.7.3
6
+ Stable tag: 1.8.9
7
 
8
  Popup by Supsystic the best way to convert visitors into subscribers, followers & customers. Create any type of popup with preset popup builder templates
9
 
10
  == Description ==
11
 
12
+ [Popup by Supsystic](http://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=description&utm_campaign=popup "Popup WordPress Plugin") get more newsletter subscribers, promote new products, deliver special offers anf get more social followers.
13
 
14
  = Christmas special popup templates pack! =
15
 
16
+ Grab visitors attention with Christmas templates. The highest conversion with positive amotions. More about [Christmas popup templates](http://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates").
17
 
18
  Popup types:
19
 
20
+ * [Subscription / Mail List Building](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_127 "Mail List Building Popup")
21
+ * [Contact Form](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_206 "Contact Form Popup")
22
+ * [Facebook](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_104 "Facebook Popup")
23
+ * [Video](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_103 "Video Popup")
24
+ * [Social Buttons](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_186 "Social Buttons Popup")
25
+ * [Full Screen](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_157 "Full Screen Popup")
26
+ * [HTML](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_208 "HTML Popup")
27
+ * [Notification Bar](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_157 "Notification Bar")
28
+ * [Age Verivication](http://supsystic.com/plugins/popup-plugin/#ppsShowPopUp_158 "Age Verification Popup")
29
 
30
  = Main Features =
31
 
32
+ * 30+ Mobile-ready [Popup Templates](http://supsystic.com/popup-examples/ "WordPress Plugin Popup Templates")
33
+ * [Popup Placement](http://supsystic.com/popup-placement/ "Popup Placement"). Modal Popup, Fullscreen Popup, Info Bar, Fly-in, Slide In Popup
34
+ * [Popup Triggers](http://supsystic.com/displaying-popup-configuration/ "Popup Triggers"). When to show / close popup, whom to show, show on next pages, time to display
35
  * Different Popup types. Subscriptions, Contact Form, YouTube Popup, Google Maps, Full Screen, Image Popup, Login/Registration, Age Verification
36
 
37
  = More Popup Options =
38
 
39
+ * [Optin, Social and Link Locks](http://supsystic.com/lock-content/ "Content Lock")
40
  * Subscription Services Integration (WordPress, MailChimp, Aweber and more)
41
+ * [A/B Split Tests](http://supsystic.com/what-is-ab-testing/ "A / B Split Test")
42
+ * [Real Time Statistic](http://supsystic.com/statistics/ "Real Time Popup Statistic")
43
+ * [20+ Popup Opening Animations](http://supsystic.com/popup-opening-animations/ "Popup Openin Animation")
44
 
45
  = Popup Builder =
46
 
54
 
55
  = Layered Popup Style =
56
 
57
+ Lots of first time popup users think where to place popup or at least how to place popuping popup as they want, because everybody understand that popup must be both gentle and appropriate. New technologies of popup builders and methodologies of popup masters inspired us to provide [Layered PopUp Style]( http://supsystic.com/popup-placement/
58
  "Layered PopUp Style").
59
 
60
  You can find this popup option following the pass: Popup plugin> Create new popup> Design> Popup Location. Here you see gratified Popup Layout with name of the site places for popup to appear.
100
 
101
  = Popup Plugin Support =
102
 
103
+ Popup Customers Support is the only one tool to help you survive in Popup Plugins World. [Contact us](http://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=contactus&utm_campaign=popup "Contact Us"), if your Popup Lifes come down or you need a Powerful Popup Advice from experienced Popup Backing Masters and your dreams come true!
104
 
105
  = Popup Translations =
106
 
181
  * The default Popup fields (Name and Email) is stable. New Popup fields created independently in Popup – you can edit or delete in any moment.
182
 
183
  Save your New Popup changes to popup purchases.
184
+ To know more detail of popup fields builder go [here](http://supsystic.com/subscribe-custom-fields-builder/ "here").
185
 
186
  = How to add Contact Form into Popup? =
187
 
188
+ Supsystic [PopUp](http://http//supsystic.com/plugins/popup-plugin/ "PopUp") and [Contact Form](http://http//supsystic.com/plugins/contact-form-plugin/ "Contact Form") are lightly customizable. Beginners and Seniors will find advantages like user-friendly interface and a great number of functionality.
189
 
190
  Contact Form can be integrated in Popup by several clicks, while this popup builder mix will give you a great popuping result. With Popup plugin Contact Form will fascinate your eyes focus to make you rich popup site owner. Such Popup mutation can be inserted in anywhere on your site. Note, that all Popup functions of will be accessible in your Contact Form. It’s an ideal way for those clients who want to gather the emails of the users, but not popup subscribers.
191
 
224
 
225
  == Screenshots ==
226
 
227
+ 1. [Christmas popup templates pack](http://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates")
228
 
229
+ 2. Subscription popup templates. All [Popup Examples](http://supsystic.com/popup-examples?utm_source=wordpress&utm_medium=second_screenshot&utm_campaign=popup "Popup Examples")
230
 
231
  3. Facebook like popup
232
 
238
 
239
  7. Social Buttons and contact form with popup
240
 
241
+ 8. [Popup WordPress plugin](http://supsystic.com/plugins/popup-plugin?utm_source=wordpress&utm_medium=first_screenshot&utm_campaign=popup "Popup WordPress plugin")
242
 
243
  == Other Notes ==
244
 
279
 
280
  == Changelog ==
281
 
 
 
 
 
 
 
 
 
 
 
 
 
282
  = 1.8.9 / 14.03.2017
283
  * Updated PHP Mailer library to latest version
284
  * Fix issues with some Facebook PopUp settings output
340
  * Forgot Password link for Login PopUps functionality added
341
 
342
  = 1.8.2 / 29.11.2016 =
343
+ * Added [Christmas popup templates pack](http://supsystic.com/blog/christmas-popup-templates-pack "Christmas popup templates")
344
  * Minor issues fix
345
 
346
  = 1.8.1 / 23.11.2016 =
788
  * Added new template "Girl"
789
  * Added Italian language
790
  * Fix of English language strings in the plugin code
791
+ * Fix Custom Subscribe fields for Aweber - PRO http://supsystic.com/plugins/popup-plugin/
792
  * Fix Name field submit for MailChimp (added full value in submit request - with First Name and Last Name)
793
  * Correct translations for plugin Settings admin tab
794
  * Added hide for IPs list functionality
880
  * Fixed popup conflict with Twig autoloaded re-defining in other plugins or themes
881
  * Facebook PopUp - correct language detection
882
  * Correct displaying usual embed iframes with Google Maps in PopUp
883
+ * PRO popup - added options: Close only after action, after time passed - http://supsystic.com/plugins/popup-plugin/
884
+ * PRO popup - added options: Show at the bottom of the page, after Inactivity, after User Comment option, after Purchasing (Checkout) - http://supsystic.com/plugins/popup-plugin/
885
+ * PRO popup - Possibility to subscribe with Facebook - http://supsystic.com/plugins/popup-plugin/
886
+ * PRO popup - Possibility to set user role for plugin usage (not just admin) - http://supsystic.com/plugins/popup-plugin/
887
  * Some popup minor spelling issues fix
888
  * Core popup code improvements
889
 
927
  * Added popup link to documentation about usage code - HTML and CSS - editor
928
  * Correct popup process shortcode from any place (not only from post/page content) - sidebars, external themes/plugins, etc.
929
  * Minor fixes for base templates
930
+ * PRO - On Exit functionality integration - http://supsystic.com/plugins/popup-plugin/
931
  * Fix issue - with multiple time showing when "On Click" mode is enabled and animation is added
932
  * Added usual posts to list where show or not popup
933
 
953
  * Main PopUp edit tabs sticky functionality - make it work with some standard notifications
954
  * Show PopUp label always on top of edit tabs on PopUp edit screen - more user-friendly
955
  * Option to show PopUp - after scroll window - right after scroll or with delay
956
+ * Layered popup integration - http://supsystic.com/plugins/popup-plugin/
957
  * Additional popup modification for "Click On" show mode - to make sure it work with more content editor systems
958
+ * A/B popup testing - tests should stay tests even after whole design change - fixed - http://supsystic.com/plugins/popup-plugin/
959
  * Admin popup list table - do not stick header line (call too much problems and don't need this)
960
  * Correct show popup on mobile devices - every size, every type
961
  * Fix sticky edit PopUp tabs scroll position