Popup Builder – Responsive WordPress Pop up - Version 3.56

Version Description

Current Version of Popup Builder is 3.55

Download this release

Release Info

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

Code changes from version 3.55 to 3.56

com/classes/PopupLoader.php CHANGED
@@ -121,15 +121,15 @@ class PopupLoader
121
  }
122
  }
123
 
124
- $popupBuilderPosts = get_transient('loadPopups');
125
- if (($popupBuilderPosts = get_transient('loadPopups')) === false) {
126
  $popupBuilderPosts = new WP_Query(
127
  array(
128
  'post_type' => SG_POPUP_POST_TYPE,
129
- 'posts_per_page' => 10
130
  )
131
  );
132
- set_transient('loadPopups', $popupBuilderPosts, 60 * MINUTE_IN_SECONDS);
133
  }
134
 
135
  // We check all the popups one by one to realize whether they might be loaded or not.
121
  }
122
  }
123
 
124
+ $popupBuilderPosts = get_transient('sgpbLoadPopups');
125
+ if (($popupBuilderPosts = get_transient('sgpbLoadPopups')) === false) {
126
  $popupBuilderPosts = new WP_Query(
127
  array(
128
  'post_type' => SG_POPUP_POST_TYPE,
129
+ 'posts_per_page' => 100
130
  )
131
  );
132
+ set_transient('sgpbLoadPopups', $popupBuilderPosts, 60 * MINUTE_IN_SECONDS);
133
  }
134
 
135
  // We check all the popups one by one to realize whether they might be loaded or not.
com/config/configPackage.php CHANGED
@@ -3,6 +3,6 @@ if (!defined('ABSPATH')) {
3
  exit();
4
  }
5
 
6
- define('SG_POPUP_VERSION', '3.55');
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.56');
7
  define('SGPB_POPUP_PKG', SGPB_POPUP_PKG_FREE);
8
  define('POPUP_BUILDER_BASENAME', 'popupbuilder-platinum/popup-builder.php');
com/helpers/ConfigDataHelper.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.55
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.56
7
  * Author: Sygnoos
8
  * Author URI: https://sygnoos.com
9
  * License: GPLv2
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.55
13
  License: GPLv2 or later
14
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
15
 
@@ -185,6 +185,10 @@ Go to the Popup Builder settings and set your desired options.
185
 
186
  == Changelog ==
187
 
 
 
 
 
188
  = Version 3.55 =
189
  * Bug fixed related to cron jobs.
190
  * Code improvements.
9
  Requires at least: 3.8
10
  Tested up to: 5.3
11
  Requires PHP: 5.3.3
12
+ Stable tag: 3.56
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.56 =
189
+ * Transient name changed.
190
+ * Max loaded popups limit increased.
191
+
192
  = Version 3.55 =
193
  * Bug fixed related to cron jobs.
194
  * Code improvements.