Version Description
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 2.2.0 |
Comparing to | |
See all releases |
Code changes from version 2.1.9 to 2.2.0
- files/sg_popup_create.php +0 -0
- files/sg_popup_main.php +0 -0
- files/sg_popup_page_selection.php +0 -0
- img/default-image.png +0 -0
- img/down_arrow-2x.gif +0 -0
- img/info.png +0 -0
- img/theme1.jpg +0 -0
- img/theme2.jpg +0 -0
- img/theme3.jpg +0 -0
- img/theme4.jpg +0 -0
- img/theme5.jpg +0 -0
- img/wpspin_light.gif +0 -0
- javascript/sg_popup_backend.js +0 -0
- javascript/sg_popup_frontend.js +31 -7
- javascript/sg_popup_javascript.php +0 -0
- javascript/sg_popup_rangeslider.js +0 -0
- popup-builder.php +2 -2
- readme.txt +89 -38
- style/animate.css +0 -0
- style/sg_popup_rangeslider.css +0 -0
- style/sg_popup_style.css +0 -0
- style/sg_popup_style.php +0 -0
- style/sgcolorbox/colorbox1.css +0 -0
- style/sgcolorbox/colorbox2.css +0 -0
- style/sgcolorbox/colorbox3.css +0 -0
- style/sgcolorbox/colorbox4.css +0 -0
- style/sgcolorbox/colorbox5.css +0 -0
files/sg_popup_create.php
CHANGED
File without changes
|
files/sg_popup_main.php
CHANGED
File without changes
|
files/sg_popup_page_selection.php
CHANGED
File without changes
|
img/default-image.png
CHANGED
File without changes
|
img/down_arrow-2x.gif
CHANGED
File without changes
|
img/info.png
CHANGED
File without changes
|
img/theme1.jpg
CHANGED
File without changes
|
img/theme2.jpg
CHANGED
File without changes
|
img/theme3.jpg
CHANGED
File without changes
|
img/theme4.jpg
CHANGED
File without changes
|
img/theme5.jpg
CHANGED
File without changes
|
img/wpspin_light.gif
CHANGED
File without changes
|
javascript/sg_popup_backend.js
CHANGED
File without changes
|
javascript/sg_popup_frontend.js
CHANGED
@@ -18,12 +18,39 @@ function SGPopup() {
|
|
18 |
SGPopup.prototype.init = function() {
|
19 |
var that = this;
|
20 |
|
|
|
21 |
jQuery(".sg-show-popup").bind('click',function() {
|
22 |
var sgPopupID = jQuery(this).attr("data-sgpopupid");
|
23 |
that.showPopup(sgPopupID,false);
|
24 |
});
|
25 |
}
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
SGPopup.prototype.varToBool = function(optionName) {
|
28 |
returnValue = (optionName) ? true : false;
|
29 |
return returnValue;
|
@@ -146,9 +173,10 @@ SGPopup.prototype.sgShowColorboxWithOptions = function() {
|
|
146 |
if (popupShortCode && popupHtml == false) {
|
147 |
popupHtml = popupShortCode;
|
148 |
}
|
|
|
149 |
if(popupHtml && popupWidth == '' && popupHeight == '' && popupMaxWidth =='' && popupMaxHeight == '') {
|
150 |
-
|
151 |
-
|
152 |
if (popupIframeUrl) {
|
153 |
popupImage = popupIframeUrl;
|
154 |
}
|
@@ -275,11 +303,7 @@ SGPopup.prototype.sgShowColorboxWithOptions = function() {
|
|
275 |
if(jQuery('#sg-facebook-like').length && typeof FB !== 'undefined') {
|
276 |
FB.XFBML.parse();
|
277 |
}
|
278 |
-
|
279 |
-
jQuery('#sgcboxContent').bind( 'mousewheel', function ( e ) {
|
280 |
-
var event = e.originalEvent, d = event.wheelDelta || -event.detail; this.scrollTop += ( d < 0 ? 1 : -1 ) * 30; e.preventDefault();
|
281 |
-
}
|
282 |
-
);
|
283 |
},
|
284 |
onClosed: function() {
|
285 |
jQuery('#sgcolorbox').trigger("sgPopupClose", []);
|
18 |
SGPopup.prototype.init = function() {
|
19 |
var that = this;
|
20 |
|
21 |
+
this.onCompleate();
|
22 |
jQuery(".sg-show-popup").bind('click',function() {
|
23 |
var sgPopupID = jQuery(this).attr("data-sgpopupid");
|
24 |
that.showPopup(sgPopupID,false);
|
25 |
});
|
26 |
}
|
27 |
|
28 |
+
SGPopup.prototype.onCompleate = function() {
|
29 |
+
|
30 |
+
jQuery("#sgcolorbox").bind("sgColorboxOnCompleate", function() {
|
31 |
+
|
32 |
+
/* Scroll only inside popup */
|
33 |
+
jQuery('#sgcboxLoadedContent').isolatedScroll();
|
34 |
+
});
|
35 |
+
this.isolatedScroll();
|
36 |
+
}
|
37 |
+
|
38 |
+
SGPopup.prototype.isolatedScroll = function() {
|
39 |
+
|
40 |
+
jQuery.fn.isolatedScroll = function() {
|
41 |
+
this.bind('mousewheel DOMMouseScroll', function (e) {
|
42 |
+
var delta = e.wheelDelta || (e.originalEvent && e.originalEvent.wheelDelta) || -e.detail,
|
43 |
+
bottomOverflow = this.scrollTop + jQuery(this).outerHeight() - this.scrollHeight >= 0,
|
44 |
+
topOverflow = this.scrollTop <= 0;
|
45 |
+
|
46 |
+
if ((delta < 0 && bottomOverflow) || (delta > 0 && topOverflow)) {
|
47 |
+
e.preventDefault();
|
48 |
+
}
|
49 |
+
});
|
50 |
+
return this;
|
51 |
+
};
|
52 |
+
}
|
53 |
+
|
54 |
SGPopup.prototype.varToBool = function(optionName) {
|
55 |
returnValue = (optionName) ? true : false;
|
56 |
return returnValue;
|
173 |
if (popupShortCode && popupHtml == false) {
|
174 |
popupHtml = popupShortCode;
|
175 |
}
|
176 |
+
|
177 |
if(popupHtml && popupWidth == '' && popupHeight == '' && popupMaxWidth =='' && popupMaxHeight == '') {
|
178 |
+
jQuery(popupHtml).find('img:first').attr('onload', 'jQuery.sgcolorbox.resize();');
|
179 |
+
}
|
180 |
if (popupIframeUrl) {
|
181 |
popupImage = popupIframeUrl;
|
182 |
}
|
303 |
if(jQuery('#sg-facebook-like').length && typeof FB !== 'undefined') {
|
304 |
FB.XFBML.parse();
|
305 |
}
|
306 |
+
|
|
|
|
|
|
|
|
|
307 |
},
|
308 |
onClosed: function() {
|
309 |
jQuery('#sgcolorbox').trigger("sgPopupClose", []);
|
javascript/sg_popup_javascript.php
CHANGED
File without changes
|
javascript/sg_popup_rangeslider.js
CHANGED
File without changes
|
popup-builder.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: http://sygnoos.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: 2.
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: http://www.sygnoos.com
|
9 |
* License: GPLv2
|
@@ -19,7 +19,7 @@ define('SG_APP_POPUP_CLASSES', SG_APP_POPUP_PATH . '/classes');
|
|
19 |
define('SG_APP_POPUP_JS', SG_APP_POPUP_PATH . '/javascript');
|
20 |
define('SG_APP_POPUP_TABLE_LIMIT', 15);
|
21 |
define('SG_POPUP_PRO', 0);
|
22 |
-
define('SG_POPUP_VERSION', 2.
|
23 |
define('SG_POPUP_PRO_URL', 'http://sygnoos.com/wordpress-popup/');
|
24 |
|
25 |
$POPUP_TITLES = array(
|
3 |
* Plugin Name: Popup Builder
|
4 |
* Plugin URI: http://sygnoos.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: 2.2.0
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: http://www.sygnoos.com
|
9 |
* License: GPLv2
|
19 |
define('SG_APP_POPUP_JS', SG_APP_POPUP_PATH . '/javascript');
|
20 |
define('SG_APP_POPUP_TABLE_LIMIT', 15);
|
21 |
define('SG_POPUP_PRO', 0);
|
22 |
+
define('SG_POPUP_VERSION', 2.2);
|
23 |
define('SG_POPUP_PRO_URL', 'http://sygnoos.com/wordpress-popup/');
|
24 |
|
25 |
$POPUP_TITLES = array(
|
readme.txt
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
-
=== Popup Builder ===
|
2 |
Plugin Name: Popup Builder
|
3 |
Contributors: Popup By Sygnoos
|
4 |
Author: Sygnoos
|
5 |
Donate link: http://sygnoos.com/wordpress-popup/
|
6 |
-
Tags: popup,
|
7 |
Requires at least: 3.8
|
8 |
Tested up to: 4.4.2
|
9 |
Stable tag: trunk
|
@@ -20,28 +20,28 @@ Create and manage powerful promotion popups for your WordPress blog or website.
|
|
20 |
|
21 |
https://www.youtube.com/watch?v=3ZwRKPhHMzY
|
22 |
|
23 |
-
Popup Builder is a popup plugin for WordPress website that allows you to add highly customizable popup windows. This plugin will enable awesome popup in your WordPress website using short codes. You can add unlimited popups with their own configurations. We added effective settings
|
24 |
|
25 |
-
Popups are a good marketing tool, they're impressively high converting. A web page with a popup typically sees more conversions than the same page without a popup. More important, a page with a well designed and thoughtfully implemented popup converts better than one with
|
26 |
|
27 |
-
With popup builder plugin you can insert any type of content, right into your Popup. Insert your popup 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
|
28 |
|
29 |
**Popup Builder - Features:**
|
30 |
|
31 |
-
* Create and manage as many popups as you want
|
32 |
-
* Customize the look and feel of the popup
|
33 |
-
* Set custom animation effects
|
34 |
-
* Customize popup animation effect
|
35 |
-
* Choose between several popup themes
|
36 |
-
* Set popup location on the screen
|
37 |
-
* Customize popup overlay color and opacity
|
38 |
-
* Responsive popup
|
39 |
-
* Network/Multisite popup
|
40 |
-
* On click popup
|
41 |
-
* Html popup
|
42 |
-
* Image popup
|
43 |
-
* Facebook popup
|
44 |
-
* Shortcode popup
|
45 |
|
46 |
|
47 |
**Popup Builder - PRO features:**
|
@@ -54,13 +54,13 @@ With popup builder plugin you can insert any type of content, right into your Po
|
|
54 |
|
55 |
* 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.
|
56 |
|
57 |
-
* Create countdown popup - your site is under construction and you are
|
58 |
|
59 |
-
* Exit Intent popup - catch your users attention when they
|
60 |
|
61 |
-
*
|
62 |
|
63 |
-
* Create contact form popup - contact popup will
|
64 |
|
65 |
* Show popup only when user is scrolling - 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.
|
66 |
|
@@ -72,9 +72,9 @@ With popup builder plugin you can insert any type of content, right into your Po
|
|
72 |
|
73 |
* Disable popup closing - after activating this option, user won't be able to close the popup in any possible way.
|
74 |
|
75 |
-
* Auto close popup after X seconds - useful when activated together with the previous option, you can disable manual popup closing but close it after certain time.
|
76 |
|
77 |
-
*
|
78 |
|
79 |
|
80 |
<a href="http://sygnoos.com/wordpress-popup/" target="_blank">Get Popup Builder PRO package</a>
|
@@ -126,11 +126,14 @@ Go to the Popup Builder settings and set your desired options.
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
129 |
= Version 2.1.9 =
|
130 |
-
* Bug fixed
|
131 |
|
132 |
= Version 2.1.8 =
|
133 |
-
* Added close button localization for fourth popup theme
|
134 |
* Code cleanup
|
135 |
* Minor improvements
|
136 |
|
@@ -152,12 +155,12 @@ Go to the Popup Builder settings and set your desired options.
|
|
152 |
|
153 |
|
154 |
= Version 2.1.2 =
|
155 |
-
* Bug fixed inside Facebook Popup
|
156 |
* Optimizations.
|
157 |
|
158 |
= Version 2.1.1 =
|
159 |
|
160 |
-
*
|
161 |
* Code cleanup.
|
162 |
|
163 |
= Version 2.1.0 =
|
@@ -228,7 +231,7 @@ Bug fixed.
|
|
228 |
|
229 |
= Version 1.1.2 =
|
230 |
|
231 |
-
* Bug fixes
|
232 |
|
233 |
= Version 1.1.1 =
|
234 |
|
@@ -255,11 +258,39 @@ After creating your popup, go to the desired page or post and you will see a met
|
|
255 |
|
256 |
**Can I put a popup to show after clicking something?**
|
257 |
|
258 |
-
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!
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
259 |
|
|
|
|
|
|
|
|
|
|
|
|
|
260 |
**Why should I buy the PRO package?**
|
261 |
|
262 |
-
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
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
|
264 |
**Something is not working. What do I do?**
|
265 |
|
@@ -271,7 +302,7 @@ Leave us a good review :)
|
|
271 |
|
272 |
== Other Notes ==
|
273 |
|
274 |
-
Current Version of Popup Builder is 2.
|
275 |
|
276 |
= HTML Popup =
|
277 |
|
@@ -284,12 +315,12 @@ There are several options' sections available where you can configure the popup
|
|
284 |
|
285 |
You are writing about an awesome topic and want your ideas to stand out in the crowd? Well, you can easily do it by making use of an image popup thus adding a topic image to the plot.
|
286 |
The installed image popup allows to determine the image dimensions, which, in its turn, are resized/repositioned automatically when the window is being resized. This popup provides options for choosing the image frame theme and effects that vary in the duration of the popup animation as well. There is also the possibility to specify how long the ready-made popup appearance should be delayed after loading the page (in sec).
|
287 |
-
With the help of both basic and advanced options, you are able to freely regulate the dismissal, display, colour and location of the image popup. It can appear at the top right/left corner, at the bottom or in the
|
288 |
|
289 |
|
290 |
= ShortCode Popup =
|
291 |
|
292 |
-
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,
|
293 |
Besides having the ability to add a short code into the popup, it is also possible to manage the popup 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.
|
294 |
As far as the popup accessibility on different devices is freely manageable too, the popup is quite responsive and is resized accordingly.
|
295 |
|
@@ -301,7 +332,7 @@ One can think of a number of cases when this popup can efficiently be used.
|
|
301 |
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.
|
302 |
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.
|
303 |
You can build the Iframe popup having decided on the popup 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).
|
304 |
-
The popup can appear at the top right/left corner, at the bottom or in the
|
305 |
Finally, you can decide whether to make the popup accessible or not on different devices by choosing the options available.
|
306 |
|
307 |
= Video Popup =
|
@@ -309,7 +340,7 @@ Finally, you can decide whether to make the popup accessible or not on different
|
|
309 |
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 flavour.
|
310 |
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.
|
311 |
Happily, you can manage the popup 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.
|
312 |
-
The availability of both basic and advanced options makes the popup dismissal and display easily manageable. You can have the popup at the top right/left corner, at the bottom or in the
|
313 |
|
314 |
= Social Popup =
|
315 |
|
@@ -320,7 +351,27 @@ The dismissal, display, colour and location of the social popup can be easily re
|
|
320 |
|
321 |
= Exit-Intent Popup =
|
322 |
|
323 |
-
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 popups are "overlay popups", and cannot be blocked by popup blockers. Also, they are the most customer-friendly approach to communicate a special message to your visitors, as they don
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
|
325 |
More popup descriptions coming soon.
|
326 |
|
1 |
+
=== Popup Builder ===
|
2 |
Plugin Name: Popup Builder
|
3 |
Contributors: Popup By Sygnoos
|
4 |
Author: Sygnoos
|
5 |
Donate link: http://sygnoos.com/wordpress-popup/
|
6 |
+
Tags: popup, ads, modal, responsive popup, fancybox, lightbox, youtube, video, iframe, vimeo, contact form, html popup, social, age restriction, countdown, facebook, subscription, exit intent popup
|
7 |
Requires at least: 3.8
|
8 |
Tested up to: 4.4.2
|
9 |
Stable tag: trunk
|
20 |
|
21 |
https://www.youtube.com/watch?v=3ZwRKPhHMzY
|
22 |
|
23 |
+
Popup Builder is a popup plugin for WordPress website that allows you to add highly customizable popup windows. This plugin will enable awesome popup in your WordPress website using short codes. You can add unlimited popups with their own configurations. We added effective settings'-panel for each popup. So, you can fully customize the popup themes, colors, sizes and many many other options.
|
24 |
|
25 |
+
Popups are a good marketing tool, they're impressively high converting. A web page with a popup typically sees more conversions than the same page without a popup. 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 popup according to your needs.
|
26 |
|
27 |
+
With popup builder plugin you can insert any type of content, right into your Popup. Insert your popup 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.
|
28 |
|
29 |
**Popup Builder - Features:**
|
30 |
|
31 |
+
* Create and manage as many popups as you want
|
32 |
+
* Customize the look and feel of the popup
|
33 |
+
* Set custom animation effects
|
34 |
+
* Customize popup animation effect
|
35 |
+
* Choose between several popup themes
|
36 |
+
* Set popup location on the screen
|
37 |
+
* Customize popup overlay color and opacity
|
38 |
+
* Responsive popup
|
39 |
+
* Network/Multisite popup
|
40 |
+
* On click popup
|
41 |
+
* Html popup
|
42 |
+
* Image popup
|
43 |
+
* Facebook popup
|
44 |
+
* Shortcode popup
|
45 |
|
46 |
|
47 |
**Popup Builder - PRO features:**
|
54 |
|
55 |
* 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.
|
56 |
|
57 |
+
* 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.
|
58 |
|
59 |
+
* Exit Intent popup - catch your users attention when they decide to leave your site without doing any of the things you want them to do. Exit Intent popup can briefly interrupt them with a popup message, steering them towards a singular call to action.
|
60 |
|
61 |
+
* Subscription popup - this kind of popup 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.
|
62 |
|
63 |
+
* Create contact form popup - contact popup will allow your clients to write you a message right from the popup.
|
64 |
|
65 |
* Show popup only when user is scrolling - 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.
|
66 |
|
72 |
|
73 |
* Disable popup closing - after activating this option, user won't be able to close the popup in any possible way.
|
74 |
|
75 |
+
* 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.
|
76 |
|
77 |
+
* Targeting popup - This popup allows you to show popup depending user location. This kind of popup is useful if your product or service is created for a specific region.
|
78 |
|
79 |
|
80 |
<a href="http://sygnoos.com/wordpress-popup/" target="_blank">Get Popup Builder PRO package</a>
|
126 |
|
127 |
== Changelog ==
|
128 |
|
129 |
+
= Version 2.2.0 =
|
130 |
+
* Bug fixed with popup scrolling.
|
131 |
+
|
132 |
= Version 2.1.9 =
|
133 |
+
* Bug fixed.
|
134 |
|
135 |
= Version 2.1.8 =
|
136 |
+
* Added close button localization for fourth popup theme.
|
137 |
* Code cleanup
|
138 |
* Minor improvements
|
139 |
|
155 |
|
156 |
|
157 |
= Version 2.1.2 =
|
158 |
+
* Bug fixed inside Facebook Popup.
|
159 |
* Optimizations.
|
160 |
|
161 |
= Version 2.1.1 =
|
162 |
|
163 |
+
* Compatible with minify plugins.
|
164 |
* Code cleanup.
|
165 |
|
166 |
= Version 2.1.0 =
|
231 |
|
232 |
= Version 1.1.2 =
|
233 |
|
234 |
+
* Bug fixes.
|
235 |
|
236 |
= Version 1.1.1 =
|
237 |
|
258 |
|
259 |
**Can I put a popup to show after clicking something?**
|
260 |
|
261 |
+
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!
|
262 |
+
|
263 |
+
|
264 |
+
|
265 |
+
**How to make the Popup responsive?**
|
266 |
+
|
267 |
+
To make your popup responsive you should do the following:
|
268 |
+
|
269 |
+
Example of responsive popup:
|
270 |
+
|
271 |
+
|
272 |
+
|
273 |
+
|
274 |
+
|
275 |
+
|
276 |
+
**What URL do I have to enter in the URL field of the facebook popup?**
|
277 |
+
|
278 |
|
279 |
+
**Can I make the video play automatically in the Video popup? (PRO)**
|
280 |
+
|
281 |
+
|
282 |
+
|
283 |
+
**What if I don't have any specific URL to be shared in my social popup?**
|
284 |
+
|
285 |
**Why should I buy the PRO package?**
|
286 |
|
287 |
+
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://sygnoos.com/wordpress-popup/">here</a>.
|
288 |
+
|
289 |
+
**Can I create a popup and make it invisible for some countries? (PRO)**
|
290 |
+
|
291 |
+
|
292 |
+
**What's Live Preview in Countdown, Subscription and Contact Form popups for? (PRO)**
|
293 |
+
|
294 |
|
295 |
**Something is not working. What do I do?**
|
296 |
|
302 |
|
303 |
== Other Notes ==
|
304 |
|
305 |
+
Current Version of Popup Builder is 2.2.0
|
306 |
|
307 |
= HTML Popup =
|
308 |
|
315 |
|
316 |
You are writing about an awesome topic and want your ideas to stand out in the crowd? Well, you can easily do it by making use of an image popup thus adding a topic image to the plot.
|
317 |
The installed image popup allows to determine the image dimensions, which, in its turn, are resized/repositioned automatically when the window is being resized. This popup provides options for choosing the image frame theme and effects that vary in the duration of the popup animation as well. There is also the possibility to specify how long the ready-made popup appearance should be delayed after loading the page (in sec).
|
318 |
+
With the help of both basic and advanced options, you are able to freely regulate the dismissal, display, colour and location of the image popup. It can appear at the top right/left corner, at the bottom or in the center. You can choose to show the popup whenever the user scrolls the page or ensure its permanent occurrence by disabling popup closing in any possible way. On the other hand, the popup can be chosen to close automatically, be dismissed when the user clicks inside or beyond of the popup area. Also, it's up to you to decide on your popup accessibility on different devices (PC, mobile, etc.).
|
319 |
|
320 |
|
321 |
= ShortCode Popup =
|
322 |
|
323 |
+
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.
|
324 |
Besides having the ability to add a short code into the popup, it is also possible to manage the popup 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.
|
325 |
As far as the popup accessibility on different devices is freely manageable too, the popup is quite responsive and is resized accordingly.
|
326 |
|
332 |
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.
|
333 |
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.
|
334 |
You can build the Iframe popup having decided on the popup 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).
|
335 |
+
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 to show the popup whenever the user scrolls the page and disable popup 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.
|
336 |
Finally, you can decide whether to make the popup accessible or not on different devices by choosing the options available.
|
337 |
|
338 |
= Video Popup =
|
340 |
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 flavour.
|
341 |
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.
|
342 |
Happily, you can manage the popup 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.
|
343 |
+
The availability of both basic and advanced options makes the popup dismissal and display easily manageable. You can have the popup 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 popup 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.
|
344 |
|
345 |
= Social Popup =
|
346 |
|
351 |
|
352 |
= Exit-Intent Popup =
|
353 |
|
354 |
+
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 popups are "overlay popups", and cannot be blocked by popup blockers. Also, they are the most customer-friendly approach to communicate 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.
|
355 |
+
|
356 |
+
= Countdown Popup =
|
357 |
+
|
358 |
+
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.
|
359 |
+
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.
|
360 |
+
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.
|
361 |
+
|
362 |
+
= Subscription Popup =
|
363 |
+
|
364 |
+
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.
|
365 |
+
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.
|
366 |
+
Happily, almost every element of the popup is fully customizable - including fonts, sizes and colours, themes and effects applied. Also, you can view the popup real-time thanks to the live previewer displaying changes you make.
|
367 |
+
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.
|
368 |
+
|
369 |
+
= Age restriction Popup =
|
370 |
+
|
371 |
+
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.
|
372 |
+
Thus, to help avoid such kind of developments, you can foster child protection by simply deciding on how much explicit your each 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.
|
373 |
+
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 the popup 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.
|
374 |
+
|
375 |
|
376 |
More popup descriptions coming soon.
|
377 |
|
style/animate.css
CHANGED
File without changes
|
style/sg_popup_rangeslider.css
CHANGED
File without changes
|
style/sg_popup_style.css
CHANGED
File without changes
|
style/sg_popup_style.php
CHANGED
File without changes
|
style/sgcolorbox/colorbox1.css
CHANGED
File without changes
|
style/sgcolorbox/colorbox2.css
CHANGED
File without changes
|
style/sgcolorbox/colorbox3.css
CHANGED
File without changes
|
style/sgcolorbox/colorbox4.css
CHANGED
File without changes
|
style/sgcolorbox/colorbox5.css
CHANGED
File without changes
|