Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Popup Maker – Popup Forms, Optins & More |
Version | 1.16.7 |
Comparing to | |
See all releases |
Code changes from version 1.16.5 to 1.16.7
- includes/functions/popups/template.php +3 -3
- popup-maker.php +2 -2
- readme.txt +7 -2
includes/functions/popups/template.php
CHANGED
@@ -13,7 +13,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
13 |
* @param null|int|string $popup_id Popup ID.
|
14 |
*/
|
15 |
function pum_popup_ID( $popup_id = null ) {
|
16 |
-
echo
|
17 |
}
|
18 |
|
19 |
/**
|
@@ -22,7 +22,7 @@ function pum_popup_ID( $popup_id = null ) {
|
|
22 |
* @param null|int $popup_id Popup ID.
|
23 |
*/
|
24 |
function pum_popup_title( $popup_id = null ) {
|
25 |
-
echo
|
26 |
}
|
27 |
|
28 |
/**
|
@@ -39,7 +39,7 @@ function pum_popup_content( $popup_id = null ) {
|
|
39 |
|
40 |
$cached_content = PUM_Site_Popups::get_cache_content( $popup->ID );
|
41 |
|
42 |
-
echo
|
43 |
}
|
44 |
|
45 |
/**
|
13 |
* @param null|int|string $popup_id Popup ID.
|
14 |
*/
|
15 |
function pum_popup_ID( $popup_id = null ) {
|
16 |
+
echo pum_get_popup_id( $popup_id );
|
17 |
}
|
18 |
|
19 |
/**
|
22 |
* @param null|int $popup_id Popup ID.
|
23 |
*/
|
24 |
function pum_popup_title( $popup_id = null ) {
|
25 |
+
echo pum_get_popup_title( $popup_id );
|
26 |
}
|
27 |
|
28 |
/**
|
39 |
|
40 |
$cached_content = PUM_Site_Popups::get_cache_content( $popup->ID );
|
41 |
|
42 |
+
echo false !== $cached_content ? $cached_content : $popup->get_content();
|
43 |
}
|
44 |
|
45 |
/**
|
popup-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Popup Maker
|
4 |
* Plugin URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri
|
5 |
* Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
|
6 |
-
* Version: 1.16.
|
7 |
* Author: Popup Maker
|
8 |
* Author URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=author-uri
|
9 |
* License: GPL2 or later
|
@@ -93,7 +93,7 @@ class Popup_Maker {
|
|
93 |
/**
|
94 |
* @var string Plugin Version
|
95 |
*/
|
96 |
-
public static $VER = '1.16.
|
97 |
|
98 |
/**
|
99 |
* @var int DB Version
|
3 |
* Plugin Name: Popup Maker
|
4 |
* Plugin URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=plugin-uri
|
5 |
* Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
|
6 |
+
* Version: 1.16.7
|
7 |
* Author: Popup Maker
|
8 |
* Author URI: https://wppopupmaker.com/?utm_campaign=plugin-info&utm_source=plugin-header&utm_medium=author-uri
|
9 |
* License: GPL2 or later
|
93 |
/**
|
94 |
* @var string Plugin Version
|
95 |
*/
|
96 |
+
public static $VER = '1.16.7';
|
97 |
|
98 |
/**
|
99 |
* @var int DB Version
|
readme.txt
CHANGED
@@ -5,9 +5,9 @@ Plugin URI: https://wppopupmaker.com/?utm_campaign=readme&utm_medium=referral&ut
|
|
5 |
Donate link:
|
6 |
Tags: marketing, ecommerce, popup, popups, optin, conversion, promotion, pop-up, lightbox, modal, popupmaker
|
7 |
Requires at least: 4.9
|
8 |
-
Tested up to:
|
9 |
Requires PHP: 5.6
|
10 |
-
Stable tag: 1.16.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
@@ -181,6 +181,11 @@ There are several common causes for this, check [this guide for help](https://do
|
|
181 |
|
182 |
View our [complete changelog](https://github.com/PopupMaker/Popup-Maker/blob/master/CHANGELOG.md) for up-to-date information on what has been going on with the development of Popup Maker.
|
183 |
|
|
|
|
|
|
|
|
|
|
|
184 |
= v1.16.5 - 04/04/2022 =
|
185 |
|
186 |
* Improvement: Add precautionary escaping of some generated outputs.
|
5 |
Donate link:
|
6 |
Tags: marketing, ecommerce, popup, popups, optin, conversion, promotion, pop-up, lightbox, modal, popupmaker
|
7 |
Requires at least: 4.9
|
8 |
+
Tested up to: 6.0
|
9 |
Requires PHP: 5.6
|
10 |
+
Stable tag: 1.16.7
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
181 |
|
182 |
View our [complete changelog](https://github.com/PopupMaker/Popup-Maker/blob/master/CHANGELOG.md) for up-to-date information on what has been going on with the development of Popup Maker.
|
183 |
|
184 |
+
= v1.16.7 - 04/05/2022 =
|
185 |
+
|
186 |
+
* Note: Bumped 2 versions as v1.16.6 may not have fully fixed it fully.
|
187 |
+
* Fix: Regression fix due to breaking content rendering.
|
188 |
+
|
189 |
= v1.16.5 - 04/04/2022 =
|
190 |
|
191 |
* Improvement: Add precautionary escaping of some generated outputs.
|