Version Description
Current Version of Popup Builder is 3.77
Download this release
Release Info
Developer | Sygnoos |
Plugin | Popup Builder – Responsive WordPress Pop up |
Version | 3.78 |
Comparing to | |
See all releases |
Code changes from version 3.77 to 3.78
- PopupBuilderInit.php +0 -0
- com/classes/Actions.php +0 -0
- com/classes/PopupLoader.php +0 -0
- com/classes/ScriptsLoader.php +0 -0
- com/classes/components/Menu.php +8 -5
- com/config/config.php +0 -0
- com/config/configPackage.php +1 -1
- com/libs/EDD_SL_Plugin_Updater.php +0 -0
- com/libs/ListTable.php +0 -0
- com/libs/Table.php +0 -0
- popup-builder.php +1 -1
- public/js/PopupBuilder.js +0 -0
- readme.txt +4 -1
PopupBuilderInit.php
CHANGED
File without changes
|
com/classes/Actions.php
CHANGED
File without changes
|
com/classes/PopupLoader.php
CHANGED
File without changes
|
com/classes/ScriptsLoader.php
CHANGED
File without changes
|
com/classes/components/Menu.php
CHANGED
@@ -154,12 +154,15 @@ class SGPBMenu
|
|
154 |
if (!isset(self::$navMenuItems) && !$forceUpdate) {
|
155 |
foreach ($navMenuLocations as $menuName => $menuId) {
|
156 |
$menuItems = wp_get_nav_menu_items($menuId);
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
|
|
|
|
|
|
161 |
}
|
162 |
-
|
163 |
}
|
164 |
}
|
165 |
|
154 |
if (!isset(self::$navMenuItems) && !$forceUpdate) {
|
155 |
foreach ($navMenuLocations as $menuName => $menuId) {
|
156 |
$menuItems = wp_get_nav_menu_items($menuId);
|
157 |
+
|
158 |
+
if (!empty($menuItems)) {
|
159 |
+
foreach ($menuItems as $menuItem) {
|
160 |
+
$popupId = $menuItem->sgpbPopupId;
|
161 |
+
if ($popupId > 0) {
|
162 |
+
self::$navMenuItems[] = $menuItem;
|
163 |
+
}
|
164 |
}
|
165 |
+
}
|
166 |
}
|
167 |
}
|
168 |
|
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.
|
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.78');
|
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.
|
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.78
|
7 |
* Author: Sygnoos
|
8 |
* Author URI: https://sygnoos.com
|
9 |
* License: GPLv2
|
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: 4.2
|
10 |
Tested up to: 5.6
|
11 |
Requires PHP: 5.3.3
|
12 |
-
Stable tag: 3.
|
13 |
License: GPLv2 or later
|
14 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
15 |
|
@@ -186,6 +186,9 @@ Go to the Popup Builder settings and set your desired options.
|
|
186 |
|
187 |
== Changelog ==
|
188 |
|
|
|
|
|
|
|
189 |
= Version 3.77 =
|
190 |
* New Feature: Now users can select and set the popup on menu from the Appearance section.
|
191 |
* Bug fixed related to more than 100 popups on the website, popups are now loaded as needed.
|
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 |
|
186 |
|
187 |
== Changelog ==
|
188 |
|
189 |
+
= Version 3.78 =
|
190 |
+
* PHP notice fixed: Menu.php on line 157
|
191 |
+
|
192 |
= Version 3.77 =
|
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.
|