Version Description
Current Version of Popup Builder is 3.62
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 3.62.1 |
Comparing to | |
See all releases |
Code changes from version 3.62 to 3.62.1
- com/classes/Filters.php +0 -0
- com/classes/NotificationCenter.php +7 -4
- com/classes/popups/SGPopup.php +0 -0
- com/config/configPackage.php +1 -1
- com/helpers/AdminHelper.php +0 -0
- public/css/popupAdminStyles.css +0 -0
- public/css/theme.css +0 -0
- public/js/PopupBuilder.js +0 -0
- readme.txt +4 -1
com/classes/Filters.php
CHANGED
File without changes
|
com/classes/NotificationCenter.php
CHANGED
@@ -122,10 +122,13 @@ class SGPBNotificationCenter
|
|
122 |
}
|
123 |
$removedNotifications = get_option('sgpb-all-removed-notifications');
|
124 |
$removedNotifications = json_decode($removedNotifications, true);
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
|
|
|
|
|
|
129 |
}
|
130 |
}
|
131 |
}
|
122 |
}
|
123 |
$removedNotifications = get_option('sgpb-all-removed-notifications');
|
124 |
$removedNotifications = json_decode($removedNotifications, true);
|
125 |
+
|
126 |
+
if (is_array($removedNotifications)) {
|
127 |
+
foreach ($removedNotifications as $removedNotificationId) {
|
128 |
+
foreach ($activeNotifications as $key => $activeNotification) {
|
129 |
+
if ($activeNotification['id'] == $removedNotificationId) {
|
130 |
+
unset($activeNotifications[$key]);
|
131 |
+
}
|
132 |
}
|
133 |
}
|
134 |
}
|
com/classes/popups/SGPopup.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.62');
|
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.62.1');
|
7 |
define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
|
8 |
define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
|
com/helpers/AdminHelper.php
CHANGED
File without changes
|
public/css/popupAdminStyles.css
CHANGED
File without changes
|
public/css/theme.css
CHANGED
File without changes
|
public/js/PopupBuilder.js
CHANGED
File without changes
|
readme.txt
CHANGED
@@ -9,7 +9,7 @@ Tags: popup, pop up, wordpress popup, popup maker, exit popup, popup builder, wo
|
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.3
|
11 |
Requires PHP: 5.3.3
|
12 |
-
Stable tag: 3.62
|
13 |
License: GPLv2 or later
|
14 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
15 |
|
@@ -185,6 +185,9 @@ Go to the Popup Builder settings and set your desired options.
|
|
185 |
|
186 |
== Changelog ==
|
187 |
|
|
|
|
|
|
|
188 |
= Version 3.62 =
|
189 |
* Improvement related to image upload inside the Image Popup.
|
190 |
* Empty notification removed.
|
9 |
Requires at least: 3.8
|
10 |
Tested up to: 5.3
|
11 |
Requires PHP: 5.3.3
|
12 |
+
Stable tag: 3.62.1
|
13 |
License: GPLv2 or later
|
14 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
15 |
|
185 |
|
186 |
== Changelog ==
|
187 |
|
188 |
+
= Version 3.62.1 =
|
189 |
+
* Hot fix related to PHP Warning.
|
190 |
+
|
191 |
= Version 3.62 =
|
192 |
* Improvement related to image upload inside the Image Popup.
|
193 |
* Empty notification removed.
|