Popup Builder – Responsive WordPress Pop up - Version 3.79

Version Description

Download this release

Release Info

Developer Sygnoos
Plugin Icon 128x128 Popup Builder – Responsive WordPress Pop up
Version 3.79
Comparing to
See all releases

Code changes from version 3.78 to 3.79

PopupBuilderInit.php CHANGED
File without changes
com/classes/Actions.php CHANGED
@@ -478,6 +478,12 @@ class Actions
478
  if (empty($popup) || (!is_object($popup) && $popup != 'publish')) {
479
  return $content;
480
  }
 
 
 
 
 
 
481
  $alreadySavedEvents = $popup->getEvents();
482
  $loadableMode = $popup->getLoadableModes();
483
 
478
  if (empty($popup) || (!is_object($popup) && $popup != 'publish')) {
479
  return $content;
480
  }
481
+
482
+ $isActive = $popup->isActive();
483
+ if (!$isActive) {
484
+ return $content;
485
+ }
486
+
487
  $alreadySavedEvents = $popup->getEvents();
488
  $loadableMode = $popup->getLoadableModes();
489
 
com/classes/Javascript.php CHANGED
@@ -116,6 +116,10 @@ class Javascript
116
  $localizeDatas = $script['localizeData'];
117
 
118
  foreach($localizeDatas as $localizeData) {
 
 
 
 
119
  ScriptsIncluder::localizeScript($localizeData['handle'], $localizeData['name'], $localizeData['data']);
120
  }
121
  }
116
  $localizeDatas = $script['localizeData'];
117
 
118
  foreach($localizeDatas as $localizeData) {
119
+ if (!is_array($localizeData['data'])) {
120
+ $localizeData['data'] = (array)$localizeData['data'];
121
+ }
122
+
123
  ScriptsIncluder::localizeScript($localizeData['handle'], $localizeData['name'], $localizeData['data']);
124
  }
125
  }
com/classes/PopupLoader.php CHANGED
File without changes
com/classes/ScriptsLoader.php CHANGED
@@ -84,6 +84,11 @@ class ScriptsLoader
84
  }
85
 
86
  foreach ($popups as $popup) {
 
 
 
 
 
87
  $popupId = $popup->getId();
88
 
89
  $popupContent = apply_filters('sgpbPopupContentLoadToPage', $popup->getPopupTypeContent(), $popupId);
84
  }
85
 
86
  foreach ($popups as $popup) {
87
+ $isActive = $popup->isActive();
88
+ if (!$isActive) {
89
+ continue;
90
+ }
91
+
92
  $popupId = $popup->getId();
93
 
94
  $popupContent = apply_filters('sgpbPopupContentLoadToPage', $popup->getPopupTypeContent(), $popupId);
com/classes/popups/SGPopup.php CHANGED
@@ -179,7 +179,13 @@ abstract class SGPopup
179
  public function getContent()
180
  {
181
  $postId = $this->getId();
182
- $popupContent = wpautop($this->content);
 
 
 
 
 
 
183
  $editorContent = AdminHelper::checkEditorByPopupId($postId);
184
  if (!empty($editorContent)) {
185
  if (class_exists('Vc_Manager')) {
@@ -601,6 +607,10 @@ abstract class SGPopup
601
  return $data;
602
  }
603
 
 
 
 
 
604
  update_post_meta($popupId, 'sg_popup_scripts', $finalData);
605
 
606
  return $data;
@@ -1720,4 +1730,9 @@ abstract class SGPopup
1720
 
1721
  return $activePopupsQuery;
1722
  }
 
 
 
 
 
1723
  }
179
  public function getContent()
180
  {
181
  $postId = $this->getId();
182
+
183
+ if (!has_blocks($this->content)) {
184
+ $popupContent = wpautop($this->content);
185
+ } else {
186
+ $popupContent = $this->content;
187
+ }
188
+
189
  $editorContent = AdminHelper::checkEditorByPopupId($postId);
190
  if (!empty($editorContent)) {
191
  if (class_exists('Vc_Manager')) {
607
  return $data;
608
  }
609
 
610
+ array_walk_recursive($finalData, function(&$element){
611
+ $element = str_replace(array("\r\n"), "\n", $element);
612
+ });
613
+
614
  update_post_meta($popupId, 'sg_popup_scripts', $finalData);
615
 
616
  return $data;
1730
 
1731
  return $activePopupsQuery;
1732
  }
1733
+
1734
+ public function isActive()
1735
+ {
1736
+ return $this->getOptionValue('sgpb-is-active', true);
1737
+ }
1738
  }
com/config/config.php CHANGED
File without changes
com/config/configPackage.php CHANGED
@@ -3,6 +3,6 @@ if (!defined('ABSPATH')) {
3
  exit();
4
  }
5
 
6
- define('SG_POPUP_VERSION', '3.78');
7
  define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
8
  define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
3
  exit();
4
  }
5
 
6
+ define('SG_POPUP_VERSION', '3.79');
7
  define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
8
  define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
com/libs/EDD_SL_Plugin_Updater.php CHANGED
File without changes
com/libs/ListTable.php CHANGED
File without changes
com/libs/Table.php CHANGED
File without changes
popup-builder.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Popup Builder
4
  * Plugin URI: https://popup-builder.com
5
  * Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
6
- * Version: 3.78
7
  * Author: Sygnoos
8
  * Author URI: https://sygnoos.com
9
  * License: GPLv2
3
  * Plugin Name: Popup Builder
4
  * Plugin URI: https://popup-builder.com
5
  * Description: The most complete popup plugin. Html, image, iframe, shortcode, video and many other popup types. Manage popup dimensions, effects, themes and more.
6
+ * Version: 3.79
7
  * Author: Sygnoos
8
  * Author URI: https://sygnoos.com
9
  * License: GPLv2
public/js/Popup.js CHANGED
@@ -241,8 +241,8 @@ req.onreadystatechange=function(){if(req.readyState==4){if(req.status<400){respo
241
  {var name=cname+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==' '){c=c.substring(1);}
242
  if(c.indexOf(name)==0){return c.substring(name.length,c.length);}}
243
  return"";};SGPopup.setCookie=function(cname,cvalue,exdays)
244
- {var exdate=new Date();if(!exdays||isNaN(exdays)){exdays=365*50;}
245
- exdate.setDate(exdate.getDate()+exdays);var value=cvalue+((exdays==null)?";":"; expires="+exdate.toUTCString());document.cookie=cname+"="+value;};SGPopup.getPopup=function(el)
246
  {var id=null;while(el&&el!=document){if(el.hasAttribute("data-sg-popup-hash-id")){id=el.getAttribute("data-sg-popup-hash-id");break;}
247
  el=el.parentNode;}
248
  if(id){return SGPopupLoader.popups[id];}};SGPopup.openSGPopup=function()
241
  {var name=cname+"=";var ca=document.cookie.split(';');for(var i=0;i<ca.length;i++){var c=ca[i];while(c.charAt(0)==' '){c=c.substring(1);}
242
  if(c.indexOf(name)==0){return c.substring(name.length,c.length);}}
243
  return"";};SGPopup.setCookie=function(cname,cvalue,exdays)
244
+ {var sameSite='Lax';var exdate=new Date();if(!exdays||isNaN(exdays)){exdays=365*50;}
245
+ exdate.setDate(exdate.getDate()+exdays);var value=cvalue+((exdays==null)?";":"; expires="+exdate.toUTCString()+'; SameSite='+sameSite);document.cookie=cname+"="+value;};SGPopup.getPopup=function(el)
246
  {var id=null;while(el&&el!=document){if(el.hasAttribute("data-sg-popup-hash-id")){id=el.getAttribute("data-sg-popup-hash-id");break;}
247
  el=el.parentNode;}
248
  if(id){return SGPopupLoader.popups[id];}};SGPopup.openSGPopup=function()
public/js/PopupBuilder.js CHANGED
@@ -2262,6 +2262,7 @@ SGPBPopup.getParamFromUrl = function(param)
2262
  */
2263
  SGPBPopup.setCookie = function(cName, cValue, exDays, cPageLevel)
2264
  {
 
2265
  var isPreview = SGPBPopup.getParamFromUrl('preview');
2266
  if (isPreview) {
2267
  return false;
@@ -2303,7 +2304,7 @@ SGPBPopup.setCookie = function(cName, cValue, exDays, cPageLevel)
2303
  cookiePageLevel = '';
2304
  }
2305
 
2306
- var value = cValue+((exDays == null) ? ';' : '; '+expires+';'+cookiePageLevel);
2307
  document.cookie = cName + '=' + value;
2308
  };
2309
 
2262
  */
2263
  SGPBPopup.setCookie = function(cName, cValue, exDays, cPageLevel)
2264
  {
2265
+ var sameSite = 'Lax';
2266
  var isPreview = SGPBPopup.getParamFromUrl('preview');
2267
  if (isPreview) {
2268
  return false;
2304
  cookiePageLevel = '';
2305
  }
2306
 
2307
+ var value = cValue+((exDays == null) ? ';' : '; '+expires+';'+cookiePageLevel+'; SameSite=' + sameSite);
2308
  document.cookie = cName + '=' + value;
2309
  };
2310
 
readme.txt CHANGED
@@ -1,191 +1,159 @@
1
- === Popup Builder - Responsive Wordpress Pop up - Subscription & Newsletter ===
2
- Plugin Name: Popup Builder - Responsive Wordpress Pop up
3
- Contributors: Popup By Sygnoos, Sygnoos
4
- Author: Popup Builder
5
- Author URI: https://popup-builder.com
6
- Plugin URI: https://popup-builder.com
7
- Donate link: https://popup-builder.com
8
- Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wordpress popup plugin
9
- Requires at least: 4.2
10
- Tested up to: 5.6
11
- Requires PHP: 5.3.3
12
- Stable tag: 3.78
13
- License: GPLv2 or later
14
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
15
-
16
- Discover whole new ball game of pop-ups. Popup whatever floats your boat, customize it however you need and increase your sales with Popup Builder!
17
-
18
- == Description ==
19
-
20
- #### WordPress Popup Builder
21
-
22
- Pop up anything with Popup Builder, create and manage powerful promotion modal popups for your WordPress blog or website. Powerful, and yet, easy to use this plugin that will help you to grab your visitors' attention to introduce them your offers, discounts or other kind of promotional notices.
23
-
24
- https://www.youtube.com/watch?v=-wFDJDjczeY
25
-
26
- **Popup Builder - Features:**
27
-
28
- * Create and manage as many popups as you want
29
- * Customize the look and feel of the popup
30
- * Set popup animation effect
31
- * Choose between several popup themes
32
- * Set popup location on the screen
33
- * Show popup after X amount of page scrolling/Scroll popups - sometimes you don't want to show the popup right away, it's a good idea to set this option so the popup will be shown to the visitor only when he scrolls.
34
- * OnClick/OnHover popup
35
- * Floating Button - trigger a popup by clicking on floating button. It comes with many customization options: the style, the position, text formatting, border design, etc. The Floating Button can be designed with the color palette and style which would suit your website design nicely.
36
- * Redirect confirmation popup/Leaving notice popup
37
- * Repetitive pop up - show popup every X period of time
38
-
39
- -
40
-
41
- * Popup opening sound
42
- * Responsive popup
43
- * Network/Multisite compatible
44
- * WPML compatible
45
- * Visual Composer compatible
46
- * DIVI builder compatible
47
- * Redirect user to another page when he/she clicks on popup content
48
- * Show/Hide Popup for selected User Roles (Admin panel)
49
- * Open popup from URL. Example http://popup-builder.com/index.php?sg_popup_id=1
50
- * Reopen popup after form submission
51
-
52
- -
53
-
54
- * Html popup
55
- * Image popup
56
- * Facebook popup
57
- * Shortcode popup
58
- * Subscription popup - this type provides the easiest way to create an efficient connection between users and your website through subscription popup. With this simple popup solution, you can quickly collect subscribers in a very pleasant and elegant way. With our newsletter module you can easily send mass mailings.
59
- * Newsletter - send marketing campaings right from popup builder
60
- * PDF popup
61
-
62
- **Popup Builder - 3rd party supported plugins:**
63
-
64
- * Contact Form 7
65
- * Ninja Forms
66
- * Gravity Forms
67
- * TablePress - Just add `cache_table_output=false` to shortcode Ex. `[table id=213 cache_table_output=false /]`
68
- * Formidable Forms
69
- * WP Google Maps
70
- * HTML5 Maps
71
- * Review Builder
72
-
73
- This is a modal popup plugin for WordPress websites, that allows you to add highly customizable lightbox. This lightbox plugin will enable awesome popup windows in your WordPress website using short codes. You can add unlimited popups with their own configurations. We added effective settings'-panel for each type. So, you can fully customize the popup themes, colors, sizes and many other options.
74
-
75
- Popups are a good marketing tool, they're impressively high converting. A web page with a modal popup typically sees more conversions than the same page without one. More important, a page with a well-designed and thoughtfully implemented popup converts better than one with a poor popup. With Popup Builder plugin you can customize the look and the functionality according to your needs.
76
-
77
- With Popup Builder plugin you can insert any type of content, right into your Popup. Insert them into any page or a post, easily and fast. Popups that open automatically, are the best solution to attract your visitor's attention. Add some effects to your Popup and your customers won't go unnoticed.
78
-
79
- **Popup Builder - PRO features:**
80
-
81
- * WooCommerce popup - display targeted popup offers depending on the WooCommerce cart conditions: Price, Product amount, Specific product.
82
-
83
- * Recent sales or Social proof - promote more sales showing all your live sales popups to notify your customers about recently bought items.
84
-
85
- * Login popup - open login form inside the popup.
86
-
87
- * Registration popup - open registration form inside the popup.
88
-
89
- * Web Push Notification popup - run effective marketing campaings through web push notifications.
90
-
91
- * Iframe popup - you can set the URL you want to load within an iframe and the popup will load that iframe.
92
-
93
- * Autoresponder (subscription plus extension) - send targeted emails right after the visitor subscribes to your newsletter. You can send coupon codes or download links.
94
-
95
- * Video popup - embed YouTube and Vimeo videos inside your popup.
96
-
97
- * Social popup - this is a great type of a popup if you need to share/like your site. In social popup we have added all popular social networks like Facebook, LinkedIn, Twitter, Google Plus etc.
98
-
99
- * Age restriction popup - sometimes the site content may not be appropriate for all audiences. In these cases, users may not be able to view the content until they pass age confirmation popup.
100
-
101
- * Create countdown popup - your site is under construction and you are planning to open it in some amount of time, in this case countdown popup is exactly for you.
102
-
103
- * Exit popup - catch your users' attention when they decide to leave your site without doing any of the things you want them to do. Exit popups can briefly interrupt them with a popup message, steering them towards a singular call to action.
104
-
105
- * Contact form popup - this type will allow your clients to write you a message right from the popup.
106
-
107
- * Mailchimp popup (separate extension) - create eye-catching, beautiful Mailchimp popups to make your users sign up to the mail list right from the popup. You can set up all the design customization according to your needs and preferences!
108
-
109
- * Adblock popup (separate extension) - detect Adblock extensions that block the advertisements of your site and show a message to your visitors via popup!
110
-
111
- * AWeber popup (separate extension) - let your visitors to subscribe to your AWeber subscription form right from the popup.
112
-
113
- * Popup analytics (separate extension) - get statistics about the effectiveness of your popup.
114
-
115
- * Random popups option - this option is useful if you need to show random popups to your visitors. Let's say you are running ecommerce website and want to show discount codes. With random popup options ON you will be able to show different offers to your customers.
116
-
117
- * Show popup once per visitor - useful when you don't want to show the popup to the same visitor more than once.
118
-
119
- * Don't show popup on mobile devices - after activating this option, popup won't be shown in mobile devices.
120
-
121
- * Show popup only on mobile devices - after activating this option, popup will be shown only on mobile devices.
122
-
123
- * Disable popup closing - after activating this option, user won't be able to close the popup in any possible way.
124
-
125
- * Auto close popup after X seconds - useful when activated together with the previous option, you can disable manual popup closing but close it after a certain time.
126
-
127
- * Targeting popup - this option allows you to show a popup depending on user's location. This kind of popup is useful if your product or service is created for a specific region.
128
-
129
- * Show popup for logged in users or vice versa - you can make the popup appear only for the users who are logged in. Or you can make the it visible only for the users who aren't logged in.
130
-
131
- * Show popup after X pages - this option will help you to show a popup when the visitor visits your specified amount of pages.
132
-
133
- * Schedule popup - you can schedule the period (in days) when you want the popup to be shown. The users will see the popup during the period of the time you set. (Ex. April 13- May 9)
134
-
135
- * Popup showing frequency - you can select how many times you want the popup be shown to the same user. This means, you can make the popup appear for 3 times, for example, to the same user.
136
-
137
- <a href="https://popup-builder.com" target="_blank">Get Popup Builder PRO package</a>
138
- <div>
139
- Customizing the look and feel of the popup is as important as the content itself. That's why Popup Builder gives you the ability to customize the timings, effects, position and size of the popup to your needs.
140
- </div>
141
-
142
- Popup Builder team constantly works on upgrades and improvements. With our upcoming updates we are planning to add more types of popups.
143
-
144
- Thank you for using our pop-up modal plugin.
145
-
146
- <div>
147
- <div>
148
- <br />
149
- </div>
150
- <div>
151
- Also follow us on:
152
- <a href="https://www.facebook.com/popupbuildercom" title="Popup Builder Facebook"><strong>Facebook</strong></a>&nbsp;<a href="https://twitter.com/popup_builder" title="Popup Builder Twitter"><strong>Twitter</strong></a> and <a href="https://www.linkedin.com/company/popup-builder" title="Popup Builder LinkedIn"><strong>LinkedIn</strong></a>
153
- </div>
154
- <div>
155
- If you think that you found a bug in our Popup Builder plugin or have any questions, please feel free to contact us at <a href="mailto:support@popup-builder.com" title="support@popup-builder.com"><strong>support@popup-builder.com</strong></a>.
156
- </div>
157
- </div>
158
-
159
- <div>
160
- <br />
161
- </div>
162
-
163
- == Installation ==
164
-
165
- Install Popup Builder either via the WordPress.org plugin directory, or by uploading the files to your server.
166
-
167
- Activate the plugin through the 'Plugins' menu in WordPress.
168
-
169
- Go to the Popup Builder settings and set your desired options.
170
-
171
- == Screenshots ==
172
-
173
- 1. List of popups screen
174
- 2. Add new popup screen
175
- 3. Edit popup screen - Visual Composer
176
- 4. Edit popup screen - DIVI Builder
177
- 5. Subscribers list
178
- 6. Newsletter
179
- 7. Video popup
180
- 8. Social popup
181
- 9. Content restriction popup
182
- 10. Subscription popup
183
- 11. Image popup
184
- 12. Countdown popup
185
- 13. Facebook popup
186
-
187
  == Changelog ==
188
 
 
 
 
 
 
 
 
 
 
189
  = Version 3.78 =
190
  * PHP notice fixed: Menu.php on line 157
191
 
@@ -193,7 +161,7 @@ Go to the Popup Builder settings and set your desired options.
193
  * New Feature: Now users can select and set the popup on menu from the Appearance section.
194
  * Bug fixed related to more than 100 popups on the website, popups are now loaded as needed.
195
  * Bug fixed related to triggering onclick popup that is wrapped inside the `<ul><li>` tags.
196
- * Code improvements and minor fixes.
197
 
198
  = Version 3.76 =
199
  * Live preview fix of subscription popup.
@@ -204,1200 +172,269 @@ Go to the Popup Builder settings and set your desired options.
204
  * Floating button will not be visible for users who are already subscribed.
205
  * Bug fixed related to WordPress network.
206
  * Minor fixes and improvements.
207
-
208
- = Version 3.74 =
209
- * Deprecated wp_get_sites() replaced with get_sites.
210
- * Unescaped DB Parameter fixed.
211
- * Removed deprecated parameter from wp_upload_bits.
212
- * Deprecated get_user_by_email has been replaced with get_user_by('email').
213
- * DB placeholders has been unquoted.
214
-
215
- = Version 3.73 =
216
- * Bug fixed related to AJAX.
217
- * Bug fixed related to Subscription form's submitting.
218
- * Bug fixed related to conflict with Post SMTP.
219
-
220
- = Version 3.72 =
221
- * Option added to enable/disable AJAX for counting popup opening stats.
222
- * Bug fixed related to multisite issue.
223
- * Bug fixed related to floating button, when style is set to basic.
224
- * Improvement of code, PHP errors are fixed.
225
- * Bug fixed related to copy to clipboard functionality in action on popup click section.
226
- * Bug fixed related to email notifications.
227
- * Bug fixed related to white space that appears when popup is active.
228
- * Added user compatibility check for AJAX requests.
229
-
230
- = Version 3.7 - 3.7.1 =
231
- * Improvement of "Display Rules" settings, showing popups on archive pages for all custom post types is added.
232
- * Bug fixed related to "Settings" button when popup's opening event is set to on load.
233
- * Bug fixed related to on click popups that are set to appear on dropdown’s menu items.
234
-
235
- = Version 3.69.6 =
236
- * JavaScript improvements.
237
- * Bug fixes.
238
-
239
- = Version 3.69.5 =
240
- * Improvement of "Display Rules" settings: Everywhere is auto selected which helps to prevent invisible popups.
241
- * Improvement of close button, image source is changed to url instead of base64.
242
- * Improvement of import/export functionality.
243
- * Bug fixed related to Polylang compatibility, translate settings is visible for all users.
244
- * Bug fixed related to Floating button's frame on iOS devices.
245
-
246
- = Version 3.69.4 =
247
- * Bug fixed related to Debug Mode.
248
-
249
- = Version 3.69.3 =
250
- * Polylang compatibility fix.
251
-
252
- = Version 3.69.2 =
253
- * Code improvement.
254
- * Debug mode added: Now it’s easier to find the issues that our users face.
255
- * Bug fixed related to compatibility with Polylang plugin.
256
- * Bug fixed related to close button showing on iOS devices.
257
-
258
- = Version 3.69.1 =
259
- * Code improvements. Thanks to 'G Lagonikas'.
260
- * Minor fixes.
261
-
262
- = Version 3.69 =
263
- * Improvement of code in SGPopup.php/PopupLoader.php/PopupBuilder.js files
264
- * Improvement of WPML compatibility
265
- * Improvement of subscribers’ import functionality, all CSV file formats are supported (CSV UTF-8, Comma delimited, Macintosh, MS-DOS)
266
- * Improvement of Image popup type, ALT attribute added for search engine optimization
267
- * Improvement of Floating button styles
268
- * Improvement of logic in opening conditions
269
- * Conflict fixed related to Litespeed cache plugin
270
- * Bug fixed related to "Hover" and "Click" opening events
271
- * Bug fixed related to Multisite dynamic paths
272
-
273
- = Version 3.68.5 =
274
- * Added new feature: Floating Button - Trigger popup by clicking on the button
275
- * Improvement of Newsletter: Added an option to send test emails before running the email campaign
276
- * Improvement of Newsletter related to keeping already inserted/sent email content after refresh
277
- * Improvement of code in Feedback.php file
278
- * PHP version compatibility improvements
279
- * Improvement and code optimization of core files
280
- * Bug fixed related to the jQuery depreciation functionality
281
- * Bug fixed related to cookie saving
282
-
283
- = Version 3.68.4 =
284
- * Improvement of core JS files.
285
- * Improvement of compatibility with WooCommerce related to Gutenberg blocks.
286
- * Full Integration with WPML plugin.
287
- * Compatibility with WordPress v5.5.
288
-
289
- = Version 3.68.3 =
290
- * Bug fixed related to the error message while uploading image for close button.
291
- * Bug fixed related to the popup cloning.
292
- * Popup opening size improvement related to wide screens.
293
-
294
- = Version 3.68.2 =
295
- * Popup Builder custom post type renamed to be more recognizable
296
- * Image upload issue
297
- * Popup display design improvement related to devices with large size
298
- * Email validation fixed on subscription popup type
299
-
300
- = Version 3.68 =
301
- * Display rules section improvement.
302
- * Subscription popup type email sending improvements.
303
- * Range slider bug fixed related to showing JS error when Gutenberg editor is enabled.
304
- * Subscribers section bulk actions error fixed related to conflict with search logic, syntax error where shown.
305
- * Conflict fixed related to Beaver builder plugin in page/post creation page.
306
-
307
- = Version 3.67 =
308
- * The Popup Builder posts were removed from sitemaps which is being generated by WordPress SEO Plugin – Rank Math.
309
- * The design of Subscription popup field issues (when some themes overwrite the colors) are fixed now.
310
- * Compatibility issues in the PHP version are fixed.
311
-
312
- = Version 3.66 =
313
- * Compatability issues fixed related to Gutenberg.
314
- * Minor improvements.
315
- * Notices fixed.
316
-
317
- = Version 3.65.2 =
318
- * Added support links.
319
- * Bug fixed related to mobile landscape view.
320
- * User roles compatibility issues fixed.
321
- * Tested with WordPress 5.4
322
-
323
- = Version 3.65.1 =
324
- * Added filter for custom JS input to sanitize invalid symbols.
325
-
326
- = Version 3.65 =
327
- * Reset the custom JS metabox to prevent code injection from versions < 3.64
328
-
329
- = Version 3.64 =
330
- * Security fixes.
331
- * Conflict resolved related to Duplicate Post plugin.
332
- * Speed improvements related to popup opening when custom close button setup.
333
- * Added ALT attribute inside the close button element.
334
- * Bug fixed related to Content Click Redirect functionality when the URL contains Unicode characters.
335
- * Minor improvements.
336
-
337
- = Version 3.63 =
338
- * Autosave fixed.
339
- * Bug fixes and improvements.
340
- * JS and CSS files minified.
341
-
342
- = Version 3.62.1 =
343
- * Hot fix related to PHP Warning.
344
-
345
- = Version 3.62 =
346
- * Improvement related to image upload inside the Image Popup.
347
- * Empty notification removed.
348
- * Notices fixed related to custom CSS/JS.
349
- * Close button issue fixed when the button was not clickable.
350
- * Improvement related to cookie saving.
351
-
352
- = Version 3.61.1 =
353
- * Minor fix related to image popup.
354
-
355
- = Version 3.61 =
356
- * Improvement: No code content will be loaded if the custom JS/CSS doesn't contain any code.
357
- * Improvement: Relative plugin path has been used.
358
- * Bug fixed related to class namepsace.
359
- * Improvement: Popup data migration functionality has been modified.
360
- * Minor fixes and improvements.
361
-
362
- = Version 3.60 =
363
- * Bug fixed related to image popup saving issue.
364
- * Cron Job task improvements.
365
- * Using a dynamic plugin path when loading resources.
366
- * Improvement related to 'Disable Page Scrolling' when page scrolls to top after the popup opened.
367
- * Minor fixes and improvements.
368
-
369
- = Version 3.59 =
370
- * Speed improvements.
371
- * Bug fixed related to Page Level Cookie on all browsers.
372
-
373
- = Version 3.58 =
374
- * Hot fix related to function arguments.
375
-
376
- = Version 3.57 =
377
- * Bug fixed related to get_option function.
378
- * Popup cache improvements.
379
-
380
- = Version 3.56 =
381
- * Transient name changed.
382
- * Max loaded popups limit increased.
383
-
384
- = Version 3.55 =
385
- * Bug fixed related to cron jobs.
386
- * Code improvements.
387
-
388
- = Version 3.54 =
389
- * Custom js issue related to code symbols (not encoded as expected).
390
- * Internet explorer compatibility issue fixed.
391
- * Popup speed improvements, decreasing of requests count to DB, AJAX.
392
- * System info view added which will help us to debug errors.
393
- * Duplicate queries were removed.
394
- * New types in the notification center added (separated by colors)
395
- * Safari overlay issue fixed
396
-
397
- = Version 3.53 =
398
- * Added missing text domain.
399
- * Fixes regarding cron tasks.
400
- * Code improvements.
401
-
402
- = Version 3.52 =
403
- * Popup notifications section improvements.
404
- * Translation .pot file updated.
405
- * Missing styles for the Close button fixed.
406
- * Fixed compatibility issues with Beaver Builder (page builder) plugin.
407
- * Speed improvements, related to getting popup data from a database.
408
- * JS code improvements related to popup opening, there were issues with old/new browsers.
409
- * Image popup improvements, when there is an incorrect image used: with incorrect URL, in this case, we will show the default "no image" placeholder.
410
- * Deprecated functions updated (JS).
411
- * Unneeded CSS code removed, which affected on the admin panel of the plugin.
412
- * New 'Archive' page added in Display Rules => Page types.
413
- * JS error fixed, which affected on correct work of extra events.
414
-
415
- = Version 3.51 =
416
- * Bug fixed related to Newsletter.
417
- * Added new parameter PopupID inside sgpbPopupContentLoadToPage filter.
418
- * Added plugin notification URL.
419
- * Typo fixes.
420
-
421
- = Version 3.50 =
422
- * Added new feature to add custom JS and CSS codes. You can add your custom JS logic to control popup opening also you can add custom CSS to change popup styles.
423
- * Bug fixed related to image upload.
424
- * Big fixed related to popup opening events. Sometimes it didn't get saved.
425
- * Code improvements. We have changed the auto save option to not call AJAX every time.
426
-
427
- = Version 3.49 =
428
- * Added async image preloading to make Image popup loads faster.
429
- * Code improvements and minor bug fixes.
430
-
431
- = Version 3.48 =
432
- * Code improvements and minor bug fixes.
433
- * Popup speed improvements.
434
- * Popup triggering events synchronisation.
435
- * PHP notices fixed.
436
-
437
- = Version 3.47 =
438
- * Bug fixed related to onclick event.
439
-
440
- = Version 3.46 =
441
- * Bug fixed related to Import of subscribers.
442
- * In popup builder menu, support section fixed, there was an incorrect redirection.
443
- * WP bakery (composer) compatibilty issue fixed.
444
- * PHP notice removed connected to Media buttons.
445
- * Popup speed improvements.
446
- * Bug fixed related to menu item click.
447
- * Facebook popup bug fixed related to error related to app development mode.
448
-
449
- = Version 3.45 =
450
- * Improvements of subscription form live preview.
451
- * Changed Support location URL to (Live Chat).
452
- * Bug fixed related to Subscribers Table ordering (credit: Tin Duong of Fortinets FortiGuard Labs).
453
- * Banner closing issue fixed.
454
- * Code/speed improvements, php notices have been removed.
455
-
456
- = Version 3.44 =
457
- * Code optimization and typo fixes.
458
- * Bug fixed, related to Unsubscribe link in the newsletter.
459
- * Bug fixed related to unavailability to close the banner.
460
-
461
- = Version 3.43 =
462
- * Iframes (dimensions) in html works correctly, with correct sizes and without scroll issue.
463
- * Don't show again button added in license notice banner.
464
- * License keys issue fixed, now if you have already activated/deactivated the keys on another site, you will see the actual error.
465
- * Added new option which allows to show Subscription popup to already subscribed users.
466
- * Added new option to change the unsubscribe link title in the newsletter.
467
- * Code/speed improvements, php notices have been removed.
468
-
469
- = Version 3.41- 3.42 =
470
- * Added new shortcodes which can be used inside the Newsletter
471
- * PHP > 7 notices fixed
472
- * Code optimization and typo fixes
473
-
474
- = Version 3.4 =
475
- * Popup Builder post type removed from Yoast sitemap and other SEO plugins.
476
- * Custom JS variable improvements.
477
- * Bug fixed related to PHP version notice.
478
- * Bug fixed related to page level cookie.
479
- * Popup speed optimization.
480
- * Bug fixed related to page scrolling when the pages moves up.
481
- * New extension added Age Restriction popup.
482
-
483
- = Version 3.3 =
484
- * Popup preview fixes.
485
- * Improvement: If the popup is setup on the Link and the popup opening condition doesn't meet the current state, the default Link functionality will be triggered.
486
- * Added a Button element inside the WP editor.
487
- * Fix: Mobile landscape issue, in all cases the popup sizes will be changed, if the window orientation is changed (mobile/desktop).
488
- * Completely works with almost all page builders.
489
- * Subscribers Import/export fixes.
490
- * Popup showing limitation improvement.
491
-
492
- = Version 3.2 =
493
- * New Feature: PDF popup type.
494
- * New Feature: Popup content can be set at the top and bottom of Subscription form.
495
- * Admin panel and frontend speed improvements.
496
- * Speed improvements for Multisite.
497
- * Bug fixed related to popup overlay turning on/off functionality.
498
- * Improvements for Apple devices (page scrolling, popup dimensions, etc).
499
- * Big fixed for Internet Explorer related to popup showing limitations.
500
- * Unstoppable scroll bug fixed when there is a LastPass browser extension.
501
- * Add improvements for Page builders.
502
- * Add UTF-8 support for Newsletters.
503
-
504
- = Version 3.1.9 =
505
- * Bug fixed related to paths of the Popup Builder resources.
506
- * Select2 ui bugs.
507
- * Typos fixes.
508
- * Added message to notify user about inactive extension(s).
509
- * Speed improvement: popup opening sound affects on the popup opening speed and in some cases on page load.
510
- * Improvements related to JS variables.
511
- * Styles and scripts including issue on multisite websites.
512
- * Subscription popup: ability to write html into the GDPR field confirmation message.
513
-
514
- = Version 3.1.8 =
515
- * Added new feature border-width for subscription popup.
516
- * Added new feature border-radius for subscription popup.
517
- * Added new feature border-color for subscription popup.
518
- * Bug fixed related to dynamic JS variagbles.
519
- * Bug fixed related to popup appearance on admin panel for page builders.
520
- * Code cleanup and improvements.
521
-
522
- = Version 3.1.7.1 =
523
- * Bug fixes related to banner.
524
-
525
- = Version 3.1.7 =
526
- * Added Popup Builder button inside the TinyMCE editor, which will allow adding the popup shortcode inside the page/post content.
527
- * Added compatability with page builders.
528
- * Bug fixed related to Autoresponder conditions.
529
- * Bug fixed related to cache of the select box element.
530
- * Improvements related to script including for wordpress multisites.
531
- * Conflict resolved related to some extensions.
532
- * Bug fixed related to post category search action.
533
- * Code cleanup and improvements.
534
-
535
- = Version 3.1.6.1 =
536
- * Bug fixed related to overlay issue.
537
- * Mailchimp update issue fixed.
538
-
539
- = Version 3.1.6 =
540
- * Added new feature to change Close Button position.
541
- * Added new feature to hide/change popup's border (2nd and 3rd themes).
542
- * Added new feature inside the 'Display Rules' to show popup by post categories.
543
- * Improvement related to MyISAM and InnoDB when one if this engines don't supported.
544
- * Added class selector inside the popups' data table.
545
- * Fixed PHP notices.
546
- * Bug fixed related to extension licenses.
547
- * Code improvements and minor bug fixes.
548
-
549
- = Version 3.1.5.2 =
550
- * Added new extension Web Push Notification.
551
- * Gutenberg block improvements.
552
- * Code improvements and minor bug fixes.
553
-
554
- = Version 3.1.5.1 =
555
- * Bug fixes and improvements.
556
-
557
- = Version 3.1.5 =
558
- * Improvements related to popup analytics.
559
- * Bug fixed related to onclick with 'set popup by css class' option.
560
- * Improvements related to some filters inside the subscriber's list section.
561
- * Bug fixed related to multiple onload subscription popups.
562
- * Bug fixed related to infinite loop with popups shortcode.
563
- * Code improvements and minor bug fixes.
564
-
565
- = Version 3.1.4.1 =
566
- * Bug fixed related to JS error for blocks.
567
-
568
- = Version 3.1.4 =
569
- * Added Popup Builder block for Gutenberg.
570
- * Bug fixed related to popup limitation for IE browser.
571
- * Improvements related to the Iframes inside the HTML popup.
572
- * Added filter inside subscriber's table.
573
- * URL detection.
574
-
575
- = Version 3.1.3 =
576
- * Bug fixed related to banner closing.
577
- * Popup Builder archive page removed.
578
- * Bug fixed related to blank page of the popups data table.
579
- * Added popup showing limitation to remember by session.
580
- * If the user requests Popup's post type page it will be redreceted to homepage.
581
- * Added new option to not close the initial popup when the second popup is opened with "popup inside another popup" option.
582
- * Code improvements and minor bug fixes.
583
-
584
- = Version 3.1.2 =
585
- * Bug fixed related to popup view limitation (getting JS error if Popup Limitation is set up).
586
- * Improvements on popup preview functionality.
587
- * Added missing localization texts.
588
- * Improvements on subscribers section.
589
- * Minor fixes and improvements.
590
-
591
- = Version 3.1.1 =
592
- * Now the popup limitation cookie is saving only after the popup appears.
593
- * Popup Builder migration tweak.
594
- * Added popup import/export functionality.
595
- * Added new extension.
596
- * Code improvements and minor bug fixes.
597
-
598
- = Version 3.1 =
599
- * Bug fixed related to cookie saving for Safari and Internet Explorer.
600
- * Add new option to show categories for WooCommerce product(s).
601
- * Bug fixed related to 'unsubscribe' link.
602
- * Code improvements and minor bug fixes.
603
-
604
- = Version 3.0.9.1 =
605
- * Deafult values added for conditions section.
606
- * Media button dublicate localization removed.
607
- * Bug fixed related to page/post selection.
608
-
609
- = Version 3.0.9 =
610
- * Bug fixed connected to page scrolling when after popup appearance page srolled up.
611
- * Bug fixed for the admin side related to subscribers export list.
612
- * Improvements connected to subscription live preview.
613
- * Improvement: If more than one ShortCode (same popup) is added into the page, we will load the data only once.
614
- * Image popup optimization.
615
- * Bug fixed realted to overlay closing.
616
- * Minor fixes and improvements.
617
-
618
- = Version 3.0.8 =
619
- * Conflict fixed connected to 'unsubscribe' link with othe plugins.
620
- * Image popup responsivenes improvements.
621
- * Onclick and Onhover events added inside events dropdown metabox.
622
- * Padding removed from image popup.
623
- * Added while content is loading.
624
- * Code improvements and minor bug fixes.
625
-
626
- = Version 3.0.7 =
627
- * Hot fix connected to subscribers table.
628
-
629
- = Version 3.0.6 =
630
- * Added new option 'unsubscribe' for newsletter.
631
- * Opening and closing animation can be a float value now.
632
- * Optimization connected to large page/post list data inside the select box.
633
- * Now countdown can be set not only with date but also without it.
634
- * Image popup improvements, optimization (speed, responsivenes) and bug fixes.
635
- * Added to new option RTL/LTR for popup content direction.
636
- * Added new option inside age restriction popup to remember previus state of user selection.
637
- * Added loading spinner inside Iframe and Video popup types.
638
-
639
- = Version 3.0.5 =
640
- * Bug fixed for subscription popup for some cases when the submit event was not triggering.
641
- * Added new option to close popup after copy to clipboard action.
642
- * Added 'Push to bottom' option for social and restriction popup types.
643
- * Bug fixed connected to user roles who can use the plugin.
644
- * Bug fixed related to Popup Conditions saved data.
645
- * Improvements connected to 'disable scrolling' option for Android devices.
646
- * Added new Fit option for image popup type to resize it according to the image size.
647
- * Added success message for 'Copy to clipboard' option
648
- * Added new option to reset popup opening count.
649
- * New animation effect for popup closing.
650
-
651
- = Version 3.0.4 =
652
- * Seo redirect for popup post types (301).
653
- * CSS class support for popup opening.
654
- * Added new condition to show popup sitewide.
655
- * Bug fixed conencted to scrolling inside the Safari browser.
656
- * Bug fixed inside the subscribers' table for invalid dates.
657
- * Popup sizing improvements.
658
- * Bug fixed connected to content scroling option.
659
-
660
- = Version 3.0.3 =
661
- * Bug fixed connected to update from v2 to v3 when popups disappear.
662
- * Compatability with old popup (v2) classes. Example sg-popup-id-1.
663
- * Popup preview big fixed.
664
- * Bug fixed connected to selected pages/post for popup showing.
665
- * Bug fixed connected to new line brake inside the TinyMCE.
666
- * Bug fixed connected to close button image rendering issue.
667
- * Bug fixed connected to popup themes.
668
-
669
- = Version 3.0.2 =
670
- * Bug fixed connected to mail subject.
671
- * Bug fixed subscription popup type.
672
- * Bug fixed connected to banner.
673
- * Bug fixed connected to 'draft' status.
674
- * Optimization of images.
675
-
676
- = Version 3.0.1 =
677
- * Bug fixed connected to subscribers table.
678
- * CSS issue fixed connected to bs alert box.
679
-
680
- = Version 3.0 =
681
- * Major release of Popup Builder v.3.0.
682
- * Full UI redesign.
683
- * Full architectural changes.
684
- * Subscription popup added.
685
- * Newsletter added.
686
-
687
- = Version 2.6.7.6 =
688
- * Added new class to don't show popup for a certain period of time if the user clicks on the containg button.
689
- Example `<button class="sg-popup-dont-show-30">Close Popup and Dont Show for 30 days</button>`.
690
- * Bug fixed connected to user roles who can use the plugin.
691
-
692
- = Version 2.6.7.5 =
693
- * Improvements connected to popup preview.
694
- * Bug fixes connected to user roles who can use the plugin
695
- * Code optimization.
696
-
697
- = Version 2.6.7.4 =
698
- * Video popup improvements connected to full screen option
699
- * Popup integration's path fixed
700
- * Bug fixed connected to popup preview
701
-
702
- = Version 2.6.7.3 =
703
- * UI improvements.
704
- * Typo fixes.
705
- * Email validator fixed for subscription popup and contact form popup.
706
- * Code optimization.
707
-
708
- = Version 2.6.7.2 =
709
- * Bug fixed connected to page builder plugins.
710
-
711
- = Version 2.6.7.1 =
712
- * Bug fixed connected custom JS variables inside the popup.
713
- * Bug fixed connected to page scrolling when it is disabled.
714
- * Bug fixed connected to activation and deactivation of some popup extensions.
715
- * Bug fixed connected to get_screen function in themes where it was missing.
716
-
717
- = Version 2.6.7 =
718
- * Added new feature to use custom JS variables inside the popup.
719
- * Content background issue fixed.
720
- * Bug fixes and code optimization.
721
-
722
- = Version 2.6.5 =
723
- * Bug fixed connected to Iframe video autoplay.
724
-
725
- = Version 2.6.4.6 =
726
- * Bug fixed connected to Popup size.
727
- * Code optimization and typo fixes.
728
-
729
- = Version 2.6.4.6 =
730
- * Added a new option, to show the popup close button with configurable delay option.
731
- * Added tooltip next to Preview button, to show how to setup popup in page or post.
732
- * Bug fixed connected to Popup Type inside the JS variable.
733
- * Code optimization and typo fixes.
734
-
735
- = Version 2.6.4.5.1 =
736
- * HOTFIX
737
-
738
- = Version 2.6.4.5 =
739
- * Popup preview improvements.
740
- * Fixed auto play issue for iframe inside html popup content.
741
- * Fixed popup preview for mailchimp issue.
742
- * Facebook popup Optimization.
743
-
744
- = Version 2.6.4.4 =
745
- * Added an option to close facebook popup after liking the page.
746
- * Added an option to hide share button inside the facebook popup.
747
- * Minor fixes and improvements.
748
-
749
- = Version 2.6.4.3 =
750
- * Bug fixed connected to Popup Preview.
751
- * Popup preview improvments.
752
- * Minor fixes and improvements.
753
- * Optimization of page scroling when the popup is opened.
754
-
755
- = Version 2.6.4.2 =
756
- * Added popup preview option.
757
- * Added popup background image option.
758
- * Added new option to open popup from URL. Example `<a href="https://yoursite.com#sg-popup-id-1">Click Text</a>`
759
- * Minor fixes and improvements.
760
-
761
- = Version 2.6.4.1 =
762
- * Added popup counter feature.
763
- * Added review section.
764
- * Bug fixed connected to popup opening sound.
765
- * PHP Notices fixed.
766
- * Minor fixes and improvements.
767
-
768
- = Version 2.6.4 =
769
- * Added new option to play sound on popup opening.
770
- * Minor fixes and improvements.
771
-
772
- = Version 2.6.3.3 =
773
- * Bug fixed for Safari browser when the popup loads automatically.
774
-
775
- = Version 2.6.3.2 =
776
- * Popup media button functionality improvements.
777
- * Show popup this often time period is saving according to visitors browser.
778
-
779
- = Version 2.6.3.1 =
780
- * JS bug fixed.
781
-
782
- = Version 2.6.3 =
783
- * Bug fixes and code improvements.
784
- * New popup animation added.
785
-
786
- = Version 2.6.2 =
787
- * Bug fixed connected to page scrolling behind the popup.
788
- * Added new option `repetitive popup` to show popup every X period of time.
789
- * Added option to sho random popups (PRO).
790
- * Improved compatibility with WPML (PRO).
791
- * Typo fixes.
792
-
793
- = Version 2.6.1 =
794
- * Shortcode detection optimizations.
795
-
796
- = Version 2.6.0 =
797
- * Improvement of responsive auto mode.
798
- * Improvement of popup's shortcode detection.
799
- * Bug fixes.
800
-
801
- = Version 2.5.9.3 =
802
- * Added new option to disable content scrolling of the page.
803
- * Auto mode optimization.
804
- * Bug fixes.
805
-
806
- = Version 2.5.9.2 =
807
- * Hot fix connected to onclick popup.
808
-
809
- = Version 2.5.9.1 =
810
- * Bug fixed connected to popup positioning.
811
- * Bug fixed connected to popup hovering event.
812
- * Bug fixed connected to popup scaling.
813
- * Minor fixes and improvements.
814
-
815
- = Version 2.5.9 =
816
- * Added popup content padding option.
817
- * Banner improvements.
818
- * Bug fixes.
819
-
820
- = Version 2.5.8 =
821
- * Tweak: Added option to control popup opening count.
822
- * Bug fixed connected to banner `Do not show again button` button.
823
- * Code improvements.
824
-
825
- = Version 2.5.7 =
826
- * Bug fixed connected to popup On/Off switch button.
827
- * PHP notices fixed.
828
-
829
- = Version 2.5.6 =
830
- * Improvements of the HTML sanitization.
831
-
832
- = Version 2.5.4 - 2.5.5 =
833
- * Security update.
834
-
835
- = Version 2.5.3 =
836
- * Tweak: JS and CSS minified for better performance.
837
- * Tweak: Responsive mode calculations are more accurate.
838
- * Tweak: Facebook popup share and like buttons will be localized according to the site language.
839
- * Bug fixed connected to user roles who can use popup builder plugin.
840
- * Bug fixed connected to Max-Width option for `auto` mode.
841
- * Code optimization and typo fixes.
842
-
843
- = Version 2.5.2 =
844
- * Added new option `auto` inside the responsive mode.
845
- * Tweak: popup loading optimization.
846
- * Tweak: added compatibility with autoptimize plugin.
847
- * Tweak: added e.preventDefault(); for onclick popups to not redirect the page.
848
- * Code optimization and typo fixes.
849
- * Bug fixes.
850
-
851
-
852
- = Version 2.5.1 =
853
- * Bug fixed connected to Filename notice.
854
- * Added new feature to control popup Z-Index.
855
- * Popup themes optimization.
856
- * Code optimization and typo fixes.
857
- * Fixed some output notices.
858
-
859
- = Version 2.5.0 =
860
- * Added new option for responsiveness.
861
- * Added option to control the opacity of the popup background.
862
- * Shortcode popup improvements.
863
- * Added compatibility with cache plugins.
864
- * Added CSS class sg-popup-hover-id for triggering popup by hovering via element.
865
- * Code improvement and optimization.
866
- * Improvement for detection of CSS classes(inside page templates, and WooCommerce products).
867
- * Code improvement and optimization.
868
-
869
- = Version 2.4.9 =
870
- * New extensions added.
871
- * Subscription popup improvements.
872
- * Shortcode popup improvements.
873
- * Compatibility with WP Network > 4.6.
874
- * User role improvement for WP Network.
875
- * JS optimization for Cache plugins.
876
- * Code improvement and optimization.
877
-
878
- = Version 2.4.8 =
879
- * Bug fixed connected to extensions manager.
880
-
881
- = Version 2.4.7 =
882
- * Added extension logic.
883
- * Code optimization.
884
- * Bug fixes.
885
- * Exit-Intent extension (PRO).
886
- * AdBlock extension (PRO).
887
-
888
- = Version 2.4.6 =
889
- * UX modifications.
890
-
891
- = Version 2.4.5 =
892
- * Backend JS optimization.
893
- * Frontend JS optimization.
894
-
895
- = Version 2.4.4 =
896
- * Bug fixed connected to timezone.
897
-
898
- = Version 2.4.3 =
899
- * Added empty index.php file inside every directory to prevent directory listing.
900
- * Shortcode functionality improvements.
901
- * Prevented direct access to plugins php file.
902
- * Bug fixes.
903
-
904
- = Version 2.4.2 =
905
- * Added option to open from URL. Example http://popup-builder.com/index.php?sg_popup_id=1
906
- * Added option to reopen popup after any form submission.
907
- * Added option to show popup on custom posts (PRO)
908
- * Bug fixes and code optimization.
909
-
910
- = Version 2.4.1 =
911
- * New opening animation added.
912
-
913
- = Version 2.4.0 =
914
- * Availability to add popup for external link. Ex.`<a href="https://sygnoos.com/" class="sg-confirm-popup-1">Popup</a>` where 1 is a popup id.
915
- * Now you can have one iframe popup instance which can load dynamic external URLs. Ex `<a href="https://sygnoos.com/" class="sg-iframe-popup-1">Popup</a>`(PRO)
916
- * Page level cookie storing. Now you can decide 'Show this often' option will work on a site level or on a page level.
917
- * Bug fixed and code optimization.
918
-
919
- = Version 2.3.9.1 =
920
- * UTF-8 issue fixed.
921
-
922
- = Version 2.3.9 =
923
- * New theme added (lightbox popup).
924
- * Added new functionlity to turn on/off popup.
925
- * Inside HTML popup now allowed to use script, styles and other HTML tags.
926
- * Onclick popup inside menu item.
927
- * Newsletter module added to subscription popup (PRO).
928
- * Selective deletion inside Subscribers data table (PRO).
929
- * Popup cookie saving per page or site (PRO).
930
- * Bug fixed and code optimization.
931
-
932
- = Version 2.3.8 =
933
- * New animation effect added.
934
-
935
- = Version 2.3.7 =
936
- * New option: Popup scaling.
937
- * New option: Availability to customize 3rd theme. Ex (border-radius, border-color)
938
- * Bug fixes and code optimization.
939
-
940
- = Version 2.3.6 =
941
- * Show/Hide Popup for selected User Roles (Admin panel) (Free)
942
- * Bug fixed connected to 3rd party shortcodes
943
- * New option: Show popup after inactivity (PRO)
944
- * New option: Popup Scheduling (Example: every Monday from 9:00am - 6:00pm) (PRO)
945
- * New option: Show popup on categories
946
-
947
- = Version 2.3.5 =
948
- * Added new menu item `Settings` where user can choose weather to delete tables or not. This is helpfull when user upgrades to PRO version and don't want to lost previous data.
949
- * Third party shortcodes improvments.
950
- * New type of popup Mailchimp (PRO).
951
- * Bug fixed connected to onclick popup integration.
952
- * Dimenssions fixed when using shortcode popup.
953
-
954
-
955
- = Version 2.3.4 =
956
- * PHP version bug fixed.
957
-
958
- = Version 2.3.3 =
959
- * Bug fixed connected to PHP script short tag.
960
- * Bug fixed connected to popup's dialog z-index.
961
- * Added support for future extensions.
962
- * Added compatibility with Ninja Forms.
963
- * Added compatibility with Gravity Forms.
964
- * Added compatibility with TablePress.
965
- * Added compatibility with Formidable Forms.
966
- * Added compatibility with WP Google Maps.
967
- * Added compatibility with HTML5 Maps.
968
- * Code cleanup.
969
- * Code optimization related to include paths.
970
-
971
- = Version 2.3.3 =
972
- * Added new option for a popup content padding.
973
- * Backend banner improvement.
974
- * Bug fixes.
975
-
976
- = Version 2.3.2 =
977
- * Fusion builder compatible.
978
- * Bug fixes.
979
-
980
- = Version 2.3.1 =
981
- * Bug fixed connected to PHP version
982
-
983
- = Version 2.3.0 =
984
- * Popup shortcode modified, onclick popup can be wrapped to any element. Ex `[sg_popup id="1" wrap="span" event="click"]Open Popup #1[/sg_popup]`
985
- * Popup can be opened via html class. Ex. `<span class='sg-popup-id-1'>Popup #1</span>`
986
-
987
- = Version 2.2.9 =
988
- * Bug fixed connected to redirection on popup click.
989
-
990
- = Version 2.2.8 =
991
- * Bug fixed connected to version 2.2.7
992
-
993
- = Version 2.2.7 =
994
- * Shortcode bug fixed.
995
- * Show popup on element hover (New Feature).
996
-
997
- = Version 2.2.6 =
998
- * Bug fixed with redirection logic.
999
-
1000
- = Version 2.2.5 =
1001
- * Now you can insert a link (URL) of a page to which the customers will be redirected to, when clicking on the popup.
1002
- * Code cleanup.
1003
-
1004
- = Version 2.2.4 =
1005
- * Bug fixed connected to data tables.
1006
-
1007
- = Version 2.2.3 =
1008
- * Popup Z-index set to max value.
1009
-
1010
- = Version 2.2.2 =
1011
- * Fully tested on WordPress 4.5.
1012
- * New features added.
1013
- * Bug fixes and stability improvements.
1014
-
1015
- = Version 2.2.1 =
1016
- * Auto resize if dimensions are not defined.
1017
-
1018
- = Version 2.2.0 =
1019
- * Bug fixed with popup scrolling.
1020
-
1021
- = Version 2.1.9 =
1022
- * Bug fixed.
1023
-
1024
- = Version 2.1.8 =
1025
- * Added close button localization for fourth popup theme.
1026
- * Code cleanup.
1027
- * Minor improvements.
1028
-
1029
- = Version 2.1.7 =
1030
- * Auto adjust Popup to HTML image size.
1031
-
1032
- = Version 2.1.6 =
1033
- * Page scrolling issue fixed in popup builder.
1034
-
1035
- = Version 2.1.5 =
1036
- * Compatible with Black Studio TinyMCE.
1037
-
1038
- = Version 2.1.4 =
1039
- * Short code popup added.
1040
- * Bug fixed.
1041
-
1042
- = Version 2.1.3 =
1043
- * Bug fixed.
1044
-
1045
- = Version 2.1.2 =
1046
- * Bug fixed inside Facebook Popup.
1047
- * Optimizations.
1048
-
1049
- = Version 2.1.1 =
1050
-
1051
- * Compatible with minify plugins.
1052
- * Code cleanup.
1053
-
1054
- = Version 2.1.0 =
1055
-
1056
- * Added ability to close popup from itself. Just add html class to the element.
1057
- * Ex. `<a href="#" class="sg-popup-close">Close Popup</a>`
1058
-
1059
- = Version 2.0.9 =
1060
-
1061
- * Facebook share and like popup added.
1062
- * Code cleanup.
1063
- * Bug fixed.
1064
-
1065
- = Version 2.0.8 =
1066
-
1067
- * Inside Popup data table added sorting and search field.
1068
- * Bug fixed.
1069
-
1070
- = Version 2.0.7 =
1071
-
1072
- * Inside HTML popup WYSIWYG is updated and now allows to create content with most common HTML tags and styles.
1073
- * Code cleanup.
1074
- * Bug fixed.
1075
-
1076
-
1077
- = Version 2.0.6 =
1078
-
1079
- * Added new effects of showing popup.
1080
- * Bug fixed.
1081
-
1082
- = Version 2.0.5 =
1083
-
1084
- * Added shortcode to auto open popup.
1085
- * Added new feature to support all screen positions where popup can be shown.
1086
- * Code cleanup.
1087
- * Bug fixed.
1088
-
1089
- = Version 2.0.4 =
1090
-
1091
- * Bug fixed with database collation.
1092
-
1093
- = Version 2.0.3 =
1094
-
1095
- * Bug fixed.
1096
-
1097
- = Version 2.0.2 =
1098
-
1099
- * Popup UI changed.
1100
- * Popup Builder PHP version fixes.
1101
-
1102
- = Version 2.0.1 =
1103
-
1104
- * Bug fixed.
1105
-
1106
- = Version 2.0 =
1107
-
1108
- * Major release of Popup Builder v.2.0
1109
-
1110
- = Version 1.1.4 =
1111
-
1112
- * Bug fixed with single quotes string/html popup.
1113
-
1114
- = Version 1.1.3 =
1115
-
1116
- * Multisite support.
1117
- * Bug fixes.
1118
-
1119
- = Version 1.1.2 =
1120
-
1121
- * Bug fixes.
1122
-
1123
- = Version 1.1.1 =
1124
-
1125
- * Bug fixes.
1126
-
1127
- = Version 1.1 =
1128
-
1129
- * Bug fixes.
1130
-
1131
- = Initial upload 1.0.0 =
1132
-
1133
- == Frequently Asked Questions ==
1134
- **How many popups can I create?**
1135
-
1136
- You can create as many popups as you want, there is no limit either on the Free or the PRO version.
1137
-
1138
- **Can I have more than one popup on the same page?**
1139
-
1140
- You can have as many popups as you want on the same page, but you can only set one popup to be opened on page load, the others must be set to open on click.
1141
-
1142
- **How can I set a popup to open automatically?**
1143
-
1144
- After creating your popup, go to the desired page or post and you will see a meta box below the content editor, with the following title: "Select popup on page load". Select the popup you want to set and then update the page. You are done! After you go to that page/post the popup will get opened automatically.
1145
-
1146
- **Want to insert a popup on a link, that will open up when clicked on the link?**
1147
-
1148
- Simply add the following class to it: sg-confirm-popup-#popupid.
1149
- Ex. `<a href="https://sygnoos.com/" class="sg-confirm-popup-1">Popup</a>`
1150
- This will open a popup before a user goes to the page from the link.
1151
-
1152
- **How to redirect users after clicking on the popup image?**
1153
-
1154
- Go to the `Options` section of your popup and find "Dismiss on content click" option.
1155
- Then Select "Redirect" option and in the URL field type the URL of the page you need your users to be redirected to.
1156
-
1157
- **Can I show a popup after a specific amount of time?**
1158
-
1159
- Under the Effects panel you will see 'Popup opening delay' option, all you need to do is to enter the amount of time (seconds) after which popup will be shown.
1160
-
1161
- **Want to open your links inside the popup without redirecting your users to the other site? (PRO)**
1162
-
1163
- You can simply create an empty iframe popup and add the following class to your link: sg-iframe-popup-#popupid number.
1164
- Ex. `<a href="https://sygnoos.com/" class="sg-iframe-popup-1">Popup</a>`
1165
- This way, you'll have an iframe popup on your link, so when a user clicks on your link an iframe popup will open up, with the page of the link inside, so the users won't be redirected by the link.
1166
-
1167
- **Can I put a popup to show after clicking something?**
1168
-
1169
- Yes. There is an "Insert popup" button which will insert the popup shortcode over any element (text, image, button, etc.) you want. Just select the element, click on the button, choose a popup and you are done!
1170
-
1171
- Ex. [sg_popup id="1" event="click"]Your text, or HTML element[/sg_popup]
1172
-
1173
- Ex. [sg_popup id="1" event="click" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]
1174
-
1175
- Ex. [sg_popup id="1" event="click"]`<img src="https://sygnoos.com/images/sygnoos_logo_grey.png">`[/sg_popup]
1176
-
1177
- Alternative method in case if shortcode doesn't satisfy your needs
1178
-
1179
- Adding the following class `sg-popup-id-1`
1180
-
1181
- Example: `<span class='sg-popup-id-1'>Popup #1</span>`
1182
-
1183
- **Can I change the wrapping element of onclick popup?**
1184
-
1185
- Yes, you can change it. You can write any HTML element you need to wrap your content in the wrapper attribute of your onclick popup.
1186
-
1187
- Example: `[sg_popup id="1" event="click" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]`
1188
-
1189
- **Can I put a popup to show after hovering an element?**
1190
-
1191
- Sure, you can! Just insert your text into the following code: `[sg_popup id="1" event="hover" wrap="span"]Your text, which will be wrapped inside span element[/sg_popup]`
1192
-
1193
- **Can I change the wrapping element of hovering popup?**
1194
-
1195
- Yes, you can change it. You can write any HTML element you need to wrap your content in the wrapper attribute of your hovering popup.
1196
-
1197
- Example: `[sg_popup id="1" event="hover" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]`
1198
-
1199
- **How to create a shortcode popup?**
1200
-
1201
- It's a very easy thing to do, just follow the steps!
1202
-
1203
- * Find "Popup Builder" plugin on the left bar
1204
- * Press "Add new Popup" button
1205
- * Press "Shortcode" button
1206
- * Enter a title for the Popup
1207
- * Setup general options of the popup
1208
- * Enter a Shortcode
1209
- * Setup effects of the popup
1210
- * Setup the dimensions of the popup
1211
- * Setup advanced options of the popup
1212
- * After creating press "Save changes" right above the page
1213
- * Find the popup you created in "All popups" on the left bar
1214
-
1215
- One perfect news for the popup builder users! Our popup builder plugin is now compatible with any other plugins' shortcodes!
1216
-
1217
- **How to make the Popup responsive?**
1218
-
1219
- To make your popup responsive you should do the following:
1220
- Set width and height in percent(%) and then set Max width and Max height in pixels (px).
1221
- When the screen is too wide, Max width option will work and it will prevent showing popup large.
1222
-
1223
- Example of responsive popup:
1224
-
1225
- Width: 80%
1226
-
1227
- Height: 90%
1228
-
1229
- Max width: 640px
1230
-
1231
- Max height: 480px
1232
-
1233
-
1234
- **What URL do I have to enter in the URL field of the facebook popup?**
1235
-
1236
- You should enter the URL of the site you want to share.
1237
-
1238
- **How to redirect user to specific page when he/she clicks on popup?**
1239
-
1240
- You should create any type of popup.
1241
-
1242
- * From the Popup's options, find "Dismiss on content click" option.
1243
- * Check it.
1244
- * Select "Redirect" button.
1245
- * In the "URL" field enter the URL of the page you need your users to be redirected to.
1246
-
1247
- Don't forget to Save changes!)
1248
-
1249
- **Can I make the video play automatically in the Video popup? (PRO)**
1250
-
1251
- Sure! If you want your video to play automatically, we have an option specially for that case. Just select "Autoplay" and your video will play automatically. Please be noted that autoplay option will not work on mobile devices as there are browser restrictions.
1252
-
1253
- **What do I have to write in the field "Label" of the Age Restriction popup? (PRO)**
1254
-
1255
- You can write the text which you want to see on the button. ("Yes" or "No")
1256
-
1257
- **What if I don't have any specific URL to be shared in my social popup?**
1258
-
1259
- You can select "Use active URL" and the current page URL will be shared.
1260
-
1261
- **Why should I buy the PRO package?**
1262
-
1263
- The Free version of Popup Builder gives you anything you need for creating unlimited fully functional popups and insert them wherever you want. Our PRO package gives you the ability to create more specific popups, like iframe, video or shortcode popups. Also, advanced options will be available for you to disable popup closing, disable popup for mobile devices, show the popup only once, and many other features. So if you need these advanced popups and functionalities, get Popup Builder PRO <a href="http://popup-builder.com">here</a>.
1264
-
1265
- **How to upgrade to PRO version without losing popup's data?**
1266
-
1267
- We made it very easy for you! All you need to do is:
1268
-
1269
- * In your Menu sidebar, go to Popup -> "Settings" section.
1270
- * Disable the "Delete popup data" option.
1271
-
1272
- That's all! And you don't need to delete your Free version manually before upgrading to Pro!
1273
-
1274
- **How can I add a sound on popup opening?**
1275
-
1276
- From the 'Effects' panel enable 'Popup open sound' option and choose the sound you would like to be played on the popup opening.
1277
- Please be noted that browser's don't support all the formats. We recommend to use the WAV format.
1278
-
1279
- **Can I create a popup and make it invisible for some countries? (PRO)**
1280
-
1281
- Our plugin has an option for such cases. You can select "Filter popup for selected countries" option, which allows you to select the countries in which you want the popup to be shown or hidden, because there can be some popups which you make for specific countries and you may not want them to be seen in some other countries in cases of targeting groups for your marketing. (Allow/Disallow)
1282
-
1283
- **What's Live Preview in Countdown, Subscription and Contact Form popups for? (PRO)**
1284
-
1285
- Live preview is a great option which gives you an opportunity to see all the changes you make while creating your popup without saving it after every single change.
1286
-
1287
-
1288
- **Something is not working. What do I do?**
1289
-
1290
- Contact us! Depending on your server configuration something may go wrong, please don't hesitate on contacting us, we are here to help you! Our support email is: support@popup-builder.com
1291
-
1292
- **Everything works PERFECT. What do I do?**
1293
-
1294
- Leave us a good review :)
1295
-
1296
- == Upgrade Notice ==
1297
-
1298
- Current Version of Popup Builder is 3.77
1299
-
1300
- == Other Notes ==
1301
-
1302
- #### Popup Builder
1303
-
1304
- Our Popup Builder plugin is brilliant if you need to insert some ads to your website to attract users' attention. You can use our popups to redirect users to pages which you want them to visit, besides your host website. You can share videos, images and links of websites you want to. By our Popup Builder plugin you can add subscription forms to make your users subscribe to your page. You can even set restrictions for some groups of users, inserting restriction popups created by our plugin to your page.
1305
-
1306
- Popup Builder Team finds popups as another definition of the word "Solution".
1307
- Ready to see 10 relevant problems that appear while social marketing?
1308
- Here is how this works.
1309
-
1310
- = First problem: I want to have basic information about my product in a certain popup but a huge text might make annoying or just unreadable the text. How can this be achieved? Is there a correspondent tool for it? =
1311
-
1312
- == First solution: HTML Popup ==
1313
-
1314
- While sharing your ideas and viewpoints online, it is not always convenient or adequate to involve in the text all the information you got. On the other hand, it is always important not to ignore all the significant extra pieces of the information, because every website owner wants to satisfy the needs of a manifold audience.
1315
-
1316
- The HTML popup of ours is quite popular solution. After installing it, you gain the golden ability to be brief in your texts but unleash a pack of needed information that was collected in your mind. It is all about a simple redirection.
1317
- There are several sections in the options we give, that represent a grateful help to configure all the popups up to your needs.
1318
-
1319
- Firstly - the way the Popup looks.
1320
- You may easily customize it by choosing the theme and effect types applied to it and deciding the appropriate dimensions.
1321
- Secondly - the time, when the Popup turns up.
1322
- You have all the abilities to manage when and where the popup turns up. It can appear while visitors scroll the page, whether while they try to exit the page.
1323
- Thirdly - the size of your Popup.
1324
- You may make the it to remain unchangeable or be resized according to the window.
1325
- Fourthly - how visitors can close it.
1326
- The popup could close itself either automatically or by visitor's hand. All this options are up to you our dear customer.
1327
- And finally - the availability of the Popup.
1328
- You can decide on its availability on different devices (PC, mobile, etc.).
1329
-
1330
- = Second problem: I want to have lots of comments and reviews about my blogs because I find them attractive and informative ones. Thus, how to make people read the articles on my web page? =
1331
-
1332
- == Second solution: Image Popup ==
1333
-
1334
- It is not a secret that even the greatest articles written with the most attractive style awaken laziness among readers. The victims of these situations are huge texts that are allowed to include only words as main characters but the images. An undeniable fact - even few images certainly ease the process of reading and getting information from blogs.
1335
- Image popup is the best way to deal with this problem; the best way to make your ideas stand out in the crowd. All you need to do is using all the available opportunities we offer by adding a topic image to the pilot.
1336
-
1337
- * You may customize your installed image popup in many interesting ways, such as determining the image dimensions that considers being a very responsive option due to its resizing and repositioning ability when the main window resizes.
1338
- * It also provides options for choosing the image frame theme and effects that vary in the duration of the popup animation as well.
1339
- * There is one more possibility up to you, to specify how long the ready-made popup appearance should be delayed after loading the page.
1340
- * With the help of both basic and advanced options, you are able to easily regulate the dismissal, display, color and location of the image popup.
1341
- * You may choose where it should appear. It can appear at the top right or left corner, at the bottom or in the center.
1342
- * You can choose to show it whenever the user scrolls the page or ensure its permanent occurrence by disabling popup closing in any possible way.
1343
- * On the other hand, the popup can be chosen to close automatically, whether be dismissed when the user clicks inside or beyond of the popup area.
1344
- * In addition, it is up to you to decide on your popup accessibility on different devices (PC, mobile, etc.).
1345
-
1346
-
1347
- = ShortCode Popup =
1348
-
1349
- It is so wonderful and advantageous that more and more people take up the business of Internet content creation, as each of them tries to enrich us with marvelous tools to make use of in different spheres. Some are the authors of tooltips, column layouts, galleries, others of buttons, block quotes, social media buttons, etc.. All of the latter can be inserted into any of your content, page or post in the form of a short code which will be opened in a popup window.
1350
- Besides having the ability to add a short code into the modal popup, it is also possible to manage its development with the help of different options available. First, you can apply a certain theme and/or effect to it, decide how long its appearance should be delayed after loading the page. Then, you will be able to configure the display and dismissal of the popup by choosing it to be closed automatically or by hand, be opened while scrolling or be a permanent one. Also, you are to decide where the popup will be located.
1351
- As far as the popup accessibility on different devices is freely manageable too, it's quite responsive and is resized accordingly.
1352
-
1353
-
1354
- = Iframe Popup =
1355
-
1356
- Here is another useful pop up to make your content or website more sociable and vibrant. It is a great addition to your social toolkit, since Iframe enables you to include and remind of another website with the help of a simple tool.
1357
- One can think of a number of cases when this popup can efficiently be used.
1358
- For instance, if you are lucky enough to have sponsors or you have got partners that are worth a mention, Iframe will give you the wonderful opportunity to share the work they do. Thus, by clicking on the popup, the user will get to their websites.
1359
- It can also be used to add some maps, diagrams, charts, etc. to your content without putting them within the material itself or by refraining from dealing with copyright issues.
1360
- You can build the Iframe popup having decided on its frame theme and the effects that vary in duration. It is also possible to manage how long the ready-made popup appearance should be delayed after loading the page (in sec).
1361
- The popup can appear at the top right/left corner, at the bottom or in the center. Thanks to certain ticks-off in the options section you will be able to show the popup whenever the user scrolls the page and disable its closing at all. On the contrary, the popup can be chosen to close automatically or be dismissed when the user clicks inside or beyond the popup area.
1362
- Finally, you can decide whether to make the popup accessible or not on different devices by choosing the options available.
1363
-
1364
- = Video Popup =
1365
-
1366
- Every single day lots of information and news is shared by a number of people online. And it is widespread knowledge that any information transmitted visually is more comprehensible and competitive, as motion pictures, video clips, etc. give any material somehow a unique flavor.
1367
- Surely, many of you would like to take advantage of the opportunity that this video popup offers. It can help to emphasize or season your ideas. You will be able to add video content (YouTube, Vimeo, etc.) by putting its video URL in the popup options.
1368
- Happily, you can manage its look by choosing the popup frame theme and the effect type that can vary in duration. Also, you can decide how long the popup appearance should be delayed after loading the main page.
1369
- The availability of both basic and advanced options makes the popup dismissal and display easily manageable. You can have it at the top right/left corner, at the bottom or in the center of the page. The popup can appear while the user is scrolling the page and play right away thanks to its wonderful autoplay option. Meanwhile, you can secure the permanent appearance of the popup having disabled its closing in any possible way or it can be chosen to close automatically or disappear when the user clicks inside or beyond the popup area. Also, it's of importance that you are able to decide whether the popup should be available on a certain device or not.
1370
-
1371
- = Social Popup =
1372
-
1373
- Sometimes it is really crucial to make your voice audible to the public when you have so many things to share. On the Internet it is the social media that can enable you with the chance to communicate your ideas to the world. And to reach this goal, you can get this social popup that gives you very useful options while sharing.
1374
- Having added this popup, you will be provided with a variety of office and general tools to develop your content as you wish. Then, you will be able to make a choice between the two options to share in the social media either by adding the URL of the website you work on - the active URL - or by putting some important material from another internet source.
1375
- But before making the sharing option available you can configure the labels according to the theme and font size you want. It is also possible to make visible or hide the number of shares you have had so far. Finally, you are able to share your material with all the social media given or only the ones you prefer.
1376
- The dismissal, display, colour and location of the social popup can be easily regulated as well by making use of both basic and advanced options. The popup may appear at the top right/left corner, at the bottom or in the centre. You can choose to show the it whenever the user scrolls the page or disable popup closing thus ensuring its permanent occurrence. Meanwhile, the popup can be arranged to close automatically, be dismissed when the user clicks inside or beyond the popup area. Also, you have the possibility to decide on your popup accessibility on different devices ( PC, mobile, etc.).
1377
-
1378
- = Exit-Intent Popup =
1379
-
1380
- The exit-intent popup technologies we offer can detect when your visitors are about to push the back button, close their browser, or navigate away and they can appear as a popup addressed to them. These are "overlay popups", and cannot be blocked by popup blockers. Also, they are the most customer-friendly approach to share a special message to your visitors, as they don't interrupt your visitors while browsing or scanning your site. Thus, you will be able to easily draw their attention to sales, special offers and contests. If you decide to make use of targeted audience, you'd better consider those of a particular social network you get a lot of traffic from. Another thing you will be able to do is to grab email addresses by offering an incentive to subscribe.
1381
-
1382
- = Countdown Popup =
1383
-
1384
- You are lucky enough to come up with a great project, novelty or an unprecedented offer? You don't know how to stress its importance and make people long for it? Well, there is at least one version and we are here to lighten up your burden. Imagine a time counter that is decreasing in days, hours, minutes, etc.. We suggest installing this countdown popup that helps to present your content and keep people anticipating for it, as the popup gives information and shows the time left for reaching it at the same time.
1385
- While building up the popup, you are able to attach any kind of media or textual material. Moreover, you can control its look by choosing the popup theme and the accompanying effect. The way the counter is displayed is also manageable, since you can choose the counter background colour, text colour and language, countdown format, time zone and the location of the counter in the popup.
1386
- In the meantime, there are basic and advanced options available which help to regulate the dismissal, display, colour and location of the countdown popup. It can be chosen to turn up while scrolling or remain unchangeable, be closed automatically or manually. As far as the size of the popup is concerned, it can easily be arranged in the dimensions' options.
1387
-
1388
- = Subscription Popup =
1389
-
1390
- No doubt, building a trustful relationship with an audience is highly important if you wish to make a profit online and have an email list full of targeted, engaged subscribers. As the trust grows, the audience will be more prone to buying whatever is being sold. One way to make this happen is to make people wish to subscribe to your website with the help of the Subscription popup which can help to extend the functionality of your website.
1391
- The Subscription popup offered allows to generate a great-looking form, add a compelling incentive to subscribe and guarantee the buildup of an email list, as, once installed, it will be given maximum visibility on your website.
1392
- Happily, almost every element of the popup is fully customizable - including fonts, sizes and colours, themes and effects applied. Also, you can view it real-time thanks to the live previewer displaying changes you make.
1393
- The appearance and disappearance of the popup is under complete control too. It will appear after a pre-configured wait, be permanent or turn up while scrolling, close by hand or by itself.
1394
-
1395
- = Age restriction Popup =
1396
-
1397
- Internet is recognized as somehow an open space for creation and dissemination of ideas and content that comply to no kind of limits. It is also known that many children have at least once accessed some online content that contains violence, sex, bad language, etc.. The latter can play a crucial role in the child's personality development and can lead to serious deviations later.
1398
- Thus, to help avoid such kind of developments, you can foster child protection by simply deciding on how much explicit each of your content is and installing the age restriction popup we offer. It will make your content accessible to the age group it refers to, as the popup will make the user answer some questions to decide his/her age and will direct to certain content accordingly.
1399
- This popup can be built up to your preferences, as there is a range of options at hand. First, you can choose to put restriction on both visual and textual materials. Then, you will be able to see about the popup appearance by choosing the theme and effects to be adjusted to it, the background and text colour, radius of the "Yes" and "No" buttons below the question. Also, you can manage its dimensions and decide on its accessibility on different devices. Meanwhile, you are able to make it automatically closable, leave it open all the time or only while scrolling the page.
1400
-
1401
- More marketing popup descriptions/solutions are coming soon.
1402
-
1403
- Popup Builder Team.
1
+ === Popup Builder - Create highly converting, mobile friendly marketing popups. ===
2
+ Contributors: Popup By Sygnoos, Sygnoos
3
+ Author: Popup Builder
4
+ Author URI: https://popup-builder.com
5
+ Plugin URI: https://popup-builder.com
6
+ Donate link: https://popup-builder.com
7
+ Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wordpress popup plugin
8
+ Requires at least: 4.2
9
+ Tested up to: 5.7
10
+ Requires PHP: 5.3.3
11
+ Stable tag: 3.79
12
+ License: GPLv2 or later
13
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
14
+
15
+ Increase Sales, Lead Generation, Conversion rates and receive good Call to Action rates with smart WordPress popup plugin.
16
+
17
+ == Description ==
18
+
19
+ #### WordPress Popup Builder
20
+
21
+ Popup Builder is a Perfect solution for any WordPress website. With a wide range of WordPress popup types, conditions, and events (From Image Popup to Countdown popup, Exit Intent to GeoTargeting) Popup Builder helps you create high converting, promotional and informative popups, increase conversion rates and boost sales while reaching your marketing goals.
22
+ Moreover, our team created a custom JS/CSS coding opportunity for all our WordPress pop up types making any popup unique and fully customizable.
23
+ Use the best WordPress popup plugin and enjoy the popup creation process.
24
+
25
+ https://www.youtube.com/watch?v=-wFDJDjczeY
26
+
27
+ **SUPER EASY AND SIMPLE TO USE**
28
+
29
+ In Popup Builder, we did our best to make the interface very user-friendly and intuitive for our users. All of our popup types, events, and conditions including popup design changes are separated which makes our WordPress popup plugin suitable and easy to use. Moreover, no special coding is needed to use the plugin. Just choose your preferred type of popup and create a masterpiece for your website. While developing Popup Builder we took into consideration both your time and will to create efficient and powerful WordPress popups within minutes.
30
+
31
+ **VARIOUS POPUP TYPES FOR ALL OCCASIONS**
32
+
33
+ One of the primary advantages of our WordPress popup plugin is that it is not limited to just a few types of popup. In Popup Builder, you will find various types of popups for all occasions. We provide both free (Image Popup, HTML Popup, Facebook Popup, Subscription Popup) and paid WordPress popups with premium features (Video Popup, Web Push Notification Popup, Exit Intent popup, Mailchimp popup, WooCommerce, Login Popup, and more).
34
+ Please note that both free and paid types of our popups do not require additional effort. Each of them can be created very quickly and efficiently making your brand promotion even more tempting.
35
+
36
+ **PERFECT SOLUTION FOR ALL YOUR NEEDS**
37
+
38
+ We provide you a powerful and yet easy to use Popup Builder with a wide range of features to make your work as efficient as possible and get explosive results in the end. With our WordPress popup plugin you'll have an epic chance to target your buyer persona based on geographic segmentation, demographics, and user behavior showing highly effective popups. Popup Builder is your magic bullet and the most optimal solution for all your needs. Just create your desired WordPress popup with appropriate conditions or events and have higher and unsurpassed conversion rates for your website.
39
+
40
+ **100% CUSTOMIZABLE DESIGN AND LOOK**
41
+
42
+ Popup Builder provides you enticing features to create 100% customizable popups with the desired design. Almost all the elements of the popup are fully customizable. Customize the background, borders, overlays, texts, colors, and much more. Create personalized popups increasing your brand's awareness. It's a known fact that a page with a well-designed, branded, and properly implemented popup converts better than any other website with irritating and tiresome popups. So make your WordPress pop up unique and incomparable.
43
+
44
+ **INTEGRATION WITH THIRD PARTY WORDPRESS PLUGINS**
45
+
46
+ We have done our best to be fully integrated and compatible with the most popular plugins such as:
47
+
48
+ * WooCommerce
49
+ * MailChimp
50
+ * Contact Form 7
51
+ * WPML
52
+ * Polylang
53
+ * Ninja Forms
54
+ * Gravity Forms
55
+ * TablePress
56
+ * Formidable Forms
57
+ * WP Google Maps
58
+ * HTML5 Maps
59
+ * Review Builder
60
+ * Divi Builder
61
+
62
+ Using 3rd party plugins with Popup Builder will increase the potential of the popups and deepen the capabilities of their use for lead generation and nurturing. Our team is constantly working on improving and extending the existing integrations as well as increasing the number of integrations with third-party plugins and services.
63
+ If there is any plugin or service that you want us to be compatible with, feel free to contact us.
64
+
65
+
66
+ **GREAT AND CARING SUPPORT**
67
+
68
+ The desire of each customer and the problems that have arisen are the priority issues that have to be solved by our support team. That is why our Popup Builder team works very hard to help and satisfy the demands and wishes of all its customers. If there is a question that you would like to ask, or there is something unclear, then our support team is ready to answer each question in detail to satisfy any interest.
69
+
70
+ If you think you have any questions or suggestions concerning our WordPress popup plugin, please feel free to contact us through the community forum or drop a message at support@popup-builder.com (for Premium extensions).
71
+
72
+ **GENERAL FEATURES**
73
+
74
+ * Create and manage as many WordPress popups as you desire.
75
+ * Increase your brand awareness by customizing the design and look of your WordPress pop up.
76
+ * Choose the appropriate and desired WordPress pop up opening and closing styles.
77
+ * Grow your mailing list, create unique email marketing campaigns and send to your subscribers by converting them to leads.
78
+ * Make your popups mobile friendly and responsive for all devices.
79
+ * Show the popup when the user hovers a text or clicks somewhere on the web page to make your popup interactive and more desirable.
80
+ * Open any popup type on a specific scrollable call to action Floating button without destroying your website's UX.
81
+ * Create Network/Multisite compatible popups.
82
+ * Create social engagement, motivate users to share your website's specific content to Facebook by adding like and share buttons.
83
+ * Gain golden ability to create more customized and unique add ons with our HTML popup.
84
+ * And that's not all, far more features are waiting for you with our WordPress popup plugin.
85
+
86
+ **Premium Features (28+ ways to attract more users)**
87
+
88
+ * Target your popup efficiently and grab user's attention that is not so easy to reach by using targeting features such as location, country, URL, browser, operating system, .etc.
89
+ * Start lead generation, boost conversation rates by using Subscription Plus popup (Add segmentations like gender, GDPR field, or checkboxes making popups more targeted)..
90
+ * Connect third party plugins' or services' accounts, like Mailchimp and Aweber popup, and use them for growing your mailing list.
91
+ * Automate leads nurturing process with autoresponder without any extra effort.
92
+ * Push your website's visitors to your desired actions (making purchases or subscribing to a newsletter) based on inactivity.
93
+ * Convert website exiting users into customers by triggering popup with discounts, coupon codes, or attractive offers.
94
+ * Increase your sales by showing popup at the right moment based on cart items, specific products, or event cart's value via WooCommerce or EDD targeting.
95
+ * Raise your sales and user engagements by adding video content from YouTube, Vimeo, Daily Motions or upload your own one.
96
+ * Check the effectiveness of specific popups and track data having look at detailed analytics .
97
+ * Increase your content's social engagement and interactions for Twitter, Facebook, Linkedin, Pinterest, Email, and Google+ by using the social popup.
98
+ * Create an urgency mood and push your buyers to make rapid purchases by showing ending soon popups like Countdown.
99
+ * Detect even adblocking software without losing your ad income and ask your visitors to turn them off by showing specific popups.
100
+ * Turn your website visitors into leads, gain more subscribers' growth and higher conversation rates by giving them the chance to win with Gamification popup.
101
+ * Gain trust and show social proof notifications for sales' increase by just showing recently or frequently bought items on the website.
102
+ * Set age limitations and restrictions, deny access based on visitor's age for specific pages or even for the whole website by using Age Restriction popup.
103
+
104
+ Discover more features on our website <a href="https://popup-builder.com">WordPress Popup Builder</a>.
105
+
106
+ **FEEDBACK**
107
+
108
+ > "EXCEPTIONAL CUSTOMER SUPPORT!!!" ~[andremdery](https://wordpress.org/support/topic/exceptional-customer-support-4/)
109
+ > "No hassle setup and it just works!" ~[carricom](https://wordpress.org/support/topic/no-hassle-setup-and-it-just-works/)
110
+ > "Excellent and simple plugin!" ~[soha1992](https://wordpress.org/support/topic/excellent-and-simple-plugin-6/)
111
+ > "Very Reliable and effective" ~[soha1992](https://wordpress.org/support/topic/very-reliable-and-effective/)
112
+ > "Great plugin for notices!" ~[orionsweb](https://wordpress.org/support/topic/great-plugin-for-notices/)
113
+
114
+ Thank you for using our pop-up modal plugin.
115
+
116
+ **WE ARE SOCIAL**
117
+
118
+ * [Facebook](https://www.facebook.com/popupbuildercom)
119
+ * [Twitter](https://www.linkedin.com/company/popup-builde)
120
+ * [LinkedIn](https://www.linkedin.com/company/popup-builder)
121
+
122
+ == Installation ==
123
+
124
+ Install Popup Builder either via the WordPress.org plugin directory, or by uploading the files to your server.
125
+
126
+ Activate the plugin through the 'Plugins' menu in WordPress.
127
+
128
+ Go to the Popup Builder settings and set your desired options.
129
+
130
+ == Screenshots ==
131
+
132
+ 1. List of popups screen
133
+ 2. Add new popup screen
134
+ 3. Edit popup screen - Visual Composer
135
+ 4. Edit popup screen - DIVI Builder
136
+ 5. Subscribers list
137
+ 6. Newsletter
138
+ 7. Video popup
139
+ 8. Social popup
140
+ 9. Content restriction popup
141
+ 10. Subscription popup
142
+ 11. Image popup
143
+ 12. Countdown popup
144
+ 13. Facebook popup
145
+
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
146
  == Changelog ==
147
 
148
+ = Version 3.79 =
149
+ * WordPress version 5.7 compatibility added.
150
+ * Bug fixed relating to custom JS/CSS while exporting the popup.
151
+ * Improvement: Added cookies policy.
152
+ * Improvement: Disabled popups will not be triggered when those are setup via CSS class or shortcode.
153
+ * Bug fixed related to script localization.
154
+ * Bug fixed related to `<p>` tag in Gutenberg, the automatically added spaces are removed.
155
+ * Bug fixed related to error message while inserting simple text in html popup.
156
+
157
  = Version 3.78 =
158
  * PHP notice fixed: Menu.php on line 157
159
 
161
  * New Feature: Now users can select and set the popup on menu from the Appearance section.
162
  * Bug fixed related to more than 100 popups on the website, popups are now loaded as needed.
163
  * Bug fixed related to triggering onclick popup that is wrapped inside the `<ul><li>` tags.
164
+ * Code improvements and minor fixes.
165
 
166
  = Version 3.76 =
167
  * Live preview fix of subscription popup.
172
  * Floating button will not be visible for users who are already subscribed.
173
  * Bug fixed related to WordPress network.
174
  * Minor fixes and improvements.
175
+
176
+ = Version 3.74 =
177
+ * Deprecated wp_get_sites() replaced with get_sites.
178
+ * Unescaped DB Parameter fixed.
179
+ * Removed deprecated parameter from wp_upload_bits.
180
+ * Deprecated get_user_by_email has been replaced with get_user_by('email').
181
+ * DB placeholders has been unquoted.
182
+
183
+ = Version 3.73 =
184
+ * Bug fixed related to AJAX.
185
+ * Bug fixed related to Subscription form's submitting.
186
+ * Bug fixed related to conflict with Post SMTP.
187
+
188
+ = Version 3.72 =
189
+ * Option added to enable/disable AJAX for counting popup opening stats.
190
+ * Bug fixed related to multisite issue.
191
+ * Bug fixed related to floating button, when style is set to basic.
192
+ * Improvement of code, PHP errors are fixed.
193
+ * Bug fixed related to copy to clipboard functionality in action on popup click section.
194
+ * Bug fixed related to email notifications.
195
+ * Bug fixed related to white space that appears when popup is active.
196
+ * Added user compatibility check for AJAX requests.
197
+
198
+ = Version 3.7 - 3.7.1 =
199
+ * Improvement of "Display Rules" settings, showing popups on archive pages for all custom post types is added.
200
+ * Bug fixed related to "Settings" button when popup's opening event is set to on load.
201
+ * Bug fixed related to on click popups that are set to appear on dropdown’s menu items.
202
+
203
+ = Version 3.69.6 =
204
+ * JavaScript improvements.
205
+ * Bug fixes.
206
+
207
+ = Version 3.69.5 =
208
+ * Improvement of "Display Rules" settings: Everywhere is auto selected which helps to prevent invisible popups.
209
+ * Improvement of close button, image source is changed to url instead of base64.
210
+ * Improvement of import/export functionality.
211
+ * Bug fixed related to Polylang compatibility, translate settings is visible for all users.
212
+ * Bug fixed related to Floating button's frame on iOS devices.
213
+
214
+ = Version 3.69.4 =
215
+ * Bug fixed related to Debug Mode.
216
+
217
+ = Version 3.69.3 =
218
+ * Polylang compatibility fix.
219
+
220
+ = Version 3.69.2 =
221
+ * Code improvement.
222
+ * Debug mode added: Now it’s easier to find the issues that our users face.
223
+ * Bug fixed related to compatibility with Polylang plugin.
224
+ * Bug fixed related to close button showing on iOS devices.
225
+
226
+ = Version 3.69.1 =
227
+ * Code improvements. Thanks to 'G Lagonikas'.
228
+ * Minor fixes.
229
+
230
+ = Version 3.69 =
231
+ * Improvement of code in SGPopup.php/PopupLoader.php/PopupBuilder.js files
232
+ * Improvement of WPML compatibility
233
+ * Improvement of subscribers’ import functionality, all CSV file formats are supported (CSV UTF-8, Comma delimited, Macintosh, MS-DOS)
234
+ * Improvement of Image popup type, ALT attribute added for search engine optimization
235
+ * Improvement of Floating button styles
236
+ * Improvement of logic in opening conditions
237
+ * Conflict fixed related to Litespeed cache plugin
238
+ * Bug fixed related to "Hover" and "Click" opening events
239
+ * Bug fixed related to Multisite dynamic paths
240
+
241
+ = Version 3.68.5 =
242
+ * Added new feature: Floating Button - Trigger popup by clicking on the button
243
+ * Improvement of Newsletter: Added an option to send test emails before running the email campaign
244
+ * Improvement of Newsletter related to keeping already inserted/sent email content after refresh
245
+ * Improvement of code in Feedback.php file
246
+ * PHP version compatibility improvements
247
+ * Improvement and code optimization of core files
248
+ * Bug fixed related to the jQuery depreciation functionality
249
+ * Bug fixed related to cookie saving
250
+
251
+ = Version 3.68.4 =
252
+ * Improvement of core JS files.
253
+ * Improvement of compatibility with WooCommerce related to Gutenberg blocks.
254
+ * Full Integration with WPML plugin.
255
+ * Compatibility with WordPress v5.5.
256
+
257
+ = Version 3.68.3 =
258
+ * Bug fixed related to the error message while uploading image for close button.
259
+ * Bug fixed related to the popup cloning.
260
+ * Popup opening size improvement related to wide screens.
261
+
262
+ = Version 3.68.2 =
263
+ * Popup Builder custom post type renamed to be more recognizable
264
+ * Image upload issue
265
+ * Popup display design improvement related to devices with large size
266
+ * Email validation fixed on subscription popup type
267
+
268
+ = Version 3.68 =
269
+ * Display rules section improvement.
270
+ * Subscription popup type email sending improvements.
271
+ * Range slider bug fixed related to showing JS error when Gutenberg editor is enabled.
272
+ * Subscribers section bulk actions error fixed related to conflict with search logic, syntax error where shown.
273
+ * Conflict fixed related to Beaver builder plugin in page/post creation page.
274
+
275
+ == Frequently Asked Questions ==
276
+ **How many popups can I create?**
277
+
278
+ You can create as many popups as you want, there is no limit either on the Free or the PRO version.
279
+
280
+ **Can I have more than one popup on the same page?**
281
+
282
+ You can have as many popups as you want on the same page, but you can only set one popup to be opened on page load, the others must be set to open on click.
283
+
284
+ **How can I set a popup to open automatically?**
285
+
286
+ After creating your popup, go to the desired page or post and you will see a meta box below the content editor, with the following title: "Select popup on page load". Select the popup you want to set and then update the page. You are done! After you go to that page/post the popup will get opened automatically.
287
+
288
+ **Want to insert a popup on a link, that will open up when clicked on the link?**
289
+
290
+ Simply add the following class to it: sg-confirm-popup-#popupid.
291
+ Ex. `<a href="https://sygnoos.com/" class="sg-confirm-popup-1">Popup</a>`
292
+ This will open a popup before a user goes to the page from the link.
293
+
294
+ **How to redirect users after clicking on the popup image?**
295
+
296
+ Go to the `Options` section of your popup and find "Dismiss on content click" option.
297
+ Then Select "Redirect" option and in the URL field type the URL of the page you need your users to be redirected to.
298
+
299
+ **Can I show a popup after a specific amount of time?**
300
+
301
+ Under the Effects panel you will see 'Popup opening delay' option, all you need to do is to enter the amount of time (seconds) after which popup will be shown.
302
+
303
+ **Want to open your links inside the popup without redirecting your users to the other site? (PRO)**
304
+
305
+ You can simply create an empty iframe popup and add the following class to your link: sg-iframe-popup-#popupid number.
306
+ Ex. `<a href="https://sygnoos.com/" class="sg-iframe-popup-1">Popup</a>`
307
+ This way, you'll have an iframe popup on your link, so when a user clicks on your link an iframe popup will open up, with the page of the link inside, so the users won't be redirected by the link.
308
+
309
+ **Can I put a popup to show after clicking something?**
310
+
311
+ Yes. There is an "Insert popup" button which will insert the popup shortcode over any element (text, image, button, etc.) you want. Just select the element, click on the button, choose a popup and you are done!
312
+
313
+ Ex. [sg_popup id="1" event="click"]Your text, or HTML element[/sg_popup]
314
+
315
+ Ex. [sg_popup id="1" event="click" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]
316
+
317
+ Ex. [sg_popup id="1" event="click"]`<img src="https://sygnoos.com/images/sygnoos_logo_grey.png">`[/sg_popup]
318
+
319
+ Alternative method in case if shortcode doesn't satisfy your needs
320
+
321
+ Adding the following class `sg-popup-id-1`
322
+
323
+ Example: `<span class='sg-popup-id-1'>Popup #1</span>`
324
+
325
+ **Can I change the wrapping element of onclick popup?**
326
+
327
+ Yes, you can change it. You can write any HTML element you need to wrap your content in the wrapper attribute of your onclick popup.
328
+
329
+ Example: `[sg_popup id="1" event="click" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]`
330
+
331
+ **Can I put a popup to show after hovering an element?**
332
+
333
+ Sure, you can! Just insert your text into the following code: `[sg_popup id="1" event="hover" wrap="span"]Your text, which will be wrapped inside span element[/sg_popup]`
334
+
335
+ **Can I change the wrapping element of hovering popup?**
336
+
337
+ Yes, you can change it. You can write any HTML element you need to wrap your content in the wrapper attribute of your hovering popup.
338
+
339
+ Example: `[sg_popup id="1" event="hover" wrap="span"]Your text, which will be wraped inside span element[/sg_popup]`
340
+
341
+ **How to create a shortcode popup?**
342
+
343
+ It's a very easy thing to do, just follow the steps!
344
+
345
+ * Find "Popup Builder" plugin on the left bar
346
+ * Press "Add new Popup" button
347
+ * Press "Shortcode" button
348
+ * Enter a title for the Popup
349
+ * Setup general options of the popup
350
+ * Enter a Shortcode
351
+ * Setup effects of the popup
352
+ * Setup the dimensions of the popup
353
+ * Setup advanced options of the popup
354
+ * After creating press "Save changes" right above the page
355
+ * Find the popup you created in "All popups" on the left bar
356
+
357
+ One perfect news for the popup builder users! Our popup builder plugin is now compatible with any other plugins' shortcodes!
358
+
359
+ **How to make the Popup responsive?**
360
+
361
+ To make your popup responsive you should do the following:
362
+ Set width and height in percent(%) and then set Max width and Max height in pixels (px).
363
+ When the screen is too wide, Max width option will work and it will prevent showing popup large.
364
+
365
+ Example of responsive popup:
366
+
367
+ Width: 80%
368
+
369
+ Height: 90%
370
+
371
+ Max width: 640px
372
+
373
+ Max height: 480px
374
+
375
+
376
+ **What URL do I have to enter in the URL field of the facebook popup?**
377
+
378
+ You should enter the URL of the site you want to share.
379
+
380
+ **How to redirect user to specific page when he/she clicks on popup?**
381
+
382
+ You should create any type of popup.
383
+
384
+ * From the Popup's options, find "Dismiss on content click" option.
385
+ * Check it.
386
+ * Select "Redirect" button.
387
+ * In the "URL" field enter the URL of the page you need your users to be redirected to.
388
+
389
+ Don't forget to Save changes!)
390
+
391
+ **Can I make the video play automatically in the Video popup? (PRO)**
392
+
393
+ Sure! If you want your video to play automatically, we have an option specially for that case. Just select "Autoplay" and your video will play automatically. Please be noted that autoplay option will not work on mobile devices as there are browser restrictions.
394
+
395
+ **What do I have to write in the field "Label" of the Age Restriction popup? (PRO)**
396
+
397
+ You can write the text which you want to see on the button. ("Yes" or "No")
398
+
399
+ **What if I don't have any specific URL to be shared in my social popup?**
400
+
401
+ You can select "Use active URL" and the current page URL will be shared.
402
+
403
+ **Why should I buy the PRO package?**
404
+
405
+ The Free version of Popup Builder gives you anything you need for creating unlimited fully functional popups and insert them wherever you want. Our PRO package gives you the ability to create more specific popups, like iframe, video or shortcode popups. Also, advanced options will be available for you to disable popup closing, disable popup for mobile devices, show the popup only once, and many other features. So if you need these advanced popups and functionalities, get Popup Builder PRO <a href="http://popup-builder.com">here</a>.
406
+
407
+ **How to upgrade to PRO version without losing popup's data?**
408
+
409
+ We made it very easy for you! All you need to do is:
410
+
411
+ * In your Menu sidebar, go to Popup -> "Settings" section.
412
+ * Disable the "Delete popup data" option.
413
+
414
+ That's all! And you don't need to delete your Free version manually before upgrading to Pro!
415
+
416
+ **How can I add a sound on popup opening?**
417
+
418
+ From the 'Effects' panel enable 'Popup open sound' option and choose the sound you would like to be played on the popup opening.
419
+ Please be noted that browser's don't support all the formats. We recommend to use the WAV format.
420
+
421
+ **Can I create a popup and make it invisible for some countries? (PRO)**
422
+
423
+ Our plugin has an option for such cases. You can select "Filter popup for selected countries" option, which allows you to select the countries in which you want the popup to be shown or hidden, because there can be some popups which you make for specific countries and you may not want them to be seen in some other countries in cases of targeting groups for your marketing. (Allow/Disallow)
424
+
425
+ **What's Live Preview in Countdown, Subscription and Contact Form popups for? (PRO)**
426
+
427
+ Live preview is a great option which gives you an opportunity to see all the changes you make while creating your popup without saving it after every single change.
428
+
429
+
430
+ **Something is not working. What do I do?**
431
+
432
+ Contact us! Depending on your server configuration something may go wrong, please don't hesitate on contacting us, we are here to help you! Our support email is: support@popup-builder.com
433
+
434
+ **Everything works PERFECT. What do I do?**
435
+
436
+ Leave us a good review :)
437
+
438
+ == Upgrade Notice ==
439
+
440
+ Current Version of Popup Builder is 3.79