Version Description
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 4.1.4 |
Comparing to | |
See all releases |
Code changes from version 4.1.3 to 4.1.4
- com/classes/Actions.php +1 -0
- com/classes/Filters.php +1 -1
- com/classes/extension/SgpbPopupExtensionRegister.php +1 -0
- com/config/configPackage.php +1 -1
- popup-builder.php +1 -1
- public/svg/{add /342/200/223 1.svg → add_1.svg} +0 -0
- public/svg/{delet /342/200/223 1.svg → delete_1.svg} +0 -0
- public/svg/{Edit /342/200/223 1.svg → edit_1.svg} +0 -0
- public/svg/{settings /342/200/223 1.svg → settings_1.svg} +0 -0
- public/svg/{upload /342/200/223 1.svg → upload_1.svg} +0 -0
- public/svg/{view /342/200/223 1.svg → view_1.svg} +0 -0
- public/svg/{voice /342/200/223 1.svg → voice_1.svg} +0 -0
- readme.txt +20 -14
com/classes/Actions.php
CHANGED
@@ -8,6 +8,7 @@ use \SgpbDataConfig;
|
|
8 |
class Actions
|
9 |
{
|
10 |
public $customPostTypeObj;
|
|
|
11 |
public $mediaButton = false;
|
12 |
|
13 |
public function __construct()
|
8 |
class Actions
|
9 |
{
|
10 |
public $customPostTypeObj;
|
11 |
+
public $insideShortcodes;
|
12 |
public $mediaButton = false;
|
13 |
|
14 |
public function __construct()
|
com/classes/Filters.php
CHANGED
@@ -71,7 +71,7 @@ class Filters
|
|
71 |
|
72 |
$popupType = 'html';
|
73 |
$popup = SGPopup::find($postId);
|
74 |
-
if (
|
75 |
$popupType = $popup->getType();
|
76 |
}
|
77 |
$link .= '&sgpb_type='.$popupType;
|
71 |
|
72 |
$popupType = 'html';
|
73 |
$popup = SGPopup::find($postId);
|
74 |
+
if (is_object($popup)) {
|
75 |
$popupType = $popup->getType();
|
76 |
}
|
77 |
$link .= '&sgpb_type='.$popupType;
|
com/classes/extension/SgpbPopupExtensionRegister.php
CHANGED
@@ -19,6 +19,7 @@ class SgpbPopupExtensionRegister
|
|
19 |
/* $blog -> List of WP_Site objects for wp > 4.6 otherwise, an associative array of WP_Site data as arrays. */
|
20 |
$blogId = is_object($blog)?$blog->blog_id:$blog['blog_id'];
|
21 |
switch_to_blog($blogId);
|
|
|
22 |
}
|
23 |
return;
|
24 |
}
|
19 |
/* $blog -> List of WP_Site objects for wp > 4.6 otherwise, an associative array of WP_Site data as arrays. */
|
20 |
$blogId = is_object($blog)?$blog->blog_id:$blog['blog_id'];
|
21 |
switch_to_blog($blogId);
|
22 |
+
self::registerPlugin($pluginName, $classPath, $className, $options);
|
23 |
}
|
24 |
return;
|
25 |
}
|
com/config/configPackage.php
CHANGED
@@ -3,6 +3,6 @@ if (!defined('ABSPATH')) {
|
|
3 |
exit();
|
4 |
}
|
5 |
|
6 |
-
define('SG_POPUP_VERSION', '4.1.
|
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', '4.1.4');
|
7 |
define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
|
8 |
define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
|
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: 4.1.
|
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: 4.1.4
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: https://sygnoos.com
|
9 |
* License: GPLv2
|
public/svg/{add /342/200/223 1.svg → add_1.svg}
RENAMED
File without changes
|
public/svg/{delet /342/200/223 1.svg → delete_1.svg}
RENAMED
File without changes
|
public/svg/{Edit /342/200/223 1.svg → edit_1.svg}
RENAMED
File without changes
|
public/svg/{settings /342/200/223 1.svg → settings_1.svg}
RENAMED
File without changes
|
public/svg/{upload /342/200/223 1.svg → upload_1.svg}
RENAMED
File without changes
|
public/svg/{view /342/200/223 1.svg → view_1.svg}
RENAMED
File without changes
|
public/svg/{voice /342/200/223 1.svg → voice_1.svg}
RENAMED
File without changes
|
readme.txt
CHANGED
@@ -8,7 +8,7 @@ Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wo
|
|
8 |
Requires at least: 4.2
|
9 |
Tested up to: 5.9
|
10 |
Requires PHP: 5.3.3
|
11 |
-
Stable tag: 4.1.
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
@@ -130,21 +130,27 @@ Go to the Popup Builder settings and set your desired options.
|
|
130 |
== Screenshots ==
|
131 |
|
132 |
1. List of popups screen
|
133 |
-
2.
|
134 |
-
3.
|
135 |
-
4.
|
136 |
-
5.
|
137 |
-
6.
|
138 |
-
7.
|
139 |
-
8.
|
140 |
-
9.
|
141 |
-
10.
|
142 |
-
11.
|
143 |
-
12.
|
144 |
-
13.
|
|
|
145 |
|
146 |
== Changelog ==
|
147 |
|
|
|
|
|
|
|
|
|
|
|
148 |
= Version 4.1.3 =
|
149 |
* Improvement of shortcodes when user sends newsletters in test mode
|
150 |
|
@@ -513,4 +519,4 @@ Leave us a good review :)
|
|
513 |
|
514 |
== Upgrade Notice ==
|
515 |
|
516 |
-
Current Version of Popup Builder is 4.1.
|
8 |
Requires at least: 4.2
|
9 |
Tested up to: 5.9
|
10 |
Requires PHP: 5.3.3
|
11 |
+
Stable tag: 4.1.4
|
12 |
License: GPLv2 or later
|
13 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
14 |
|
130 |
== Screenshots ==
|
131 |
|
132 |
1. List of popups screen
|
133 |
+
2. Image popup settings
|
134 |
+
3. Design settings
|
135 |
+
4. Dimensions
|
136 |
+
5. Advanced targeting
|
137 |
+
6. Floating button
|
138 |
+
7. Facebook settings
|
139 |
+
8. Subscription settings
|
140 |
+
9. Subscribers list
|
141 |
+
10. Newsletter
|
142 |
+
11. Subscription popup
|
143 |
+
12. Facebook popup
|
144 |
+
13. Content restriction popup
|
145 |
+
14. Registration popup
|
146 |
|
147 |
== Changelog ==
|
148 |
|
149 |
+
= Version 4.1.4 =
|
150 |
+
* Bug fixed related to filenames that contain non ascii characters
|
151 |
+
* Bug fixed related to UI issues on multisite
|
152 |
+
* Bug fixed related to draft popups, that were not saved properly
|
153 |
+
|
154 |
= Version 4.1.3 =
|
155 |
* Improvement of shortcodes when user sends newsletters in test mode
|
156 |
|
519 |
|
520 |
== Upgrade Notice ==
|
521 |
|
522 |
+
Current Version of Popup Builder is 4.1.4
|