Version Description
Download this release
Release Info
Developer | fpcorso |
Plugin | Popup Maker – Popup Forms, Optins & More |
Version | 1.13.1 |
Comparing to | |
See all releases |
Code changes from version 1.13.0 to 1.13.1
- CHANGELOG.md +3 -0
- classes/Integration/Form/GravityForms.php +1 -1
- popup-maker.php +2 -2
- readme.txt +7 -9
CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
### [v1.13.0 - 10/30/2020](https://github.com/PopupMaker/Popup-Maker/milestone/26)
|
2 |
* Feature: Conversion tracking [Issue #775](https://github.com/PopupMaker/Popup-Maker/issues/775)
|
3 |
* Feature: Bypass adblockers for tracking opens and conversions [Issue #783](https://github.com/PopupMaker/Popup-Maker/issues/783)
|
1 |
+
### v1.13.1 - 11/4/2020
|
2 |
+
* Fix: PHP error notice appears when submitting Gravity Forms without AJAX
|
3 |
+
|
4 |
### [v1.13.0 - 10/30/2020](https://github.com/PopupMaker/Popup-Maker/milestone/26)
|
5 |
* Feature: Conversion tracking [Issue #775](https://github.com/PopupMaker/Popup-Maker/issues/775)
|
6 |
* Feature: Bypass adblockers for tracking opens and conversions [Issue #783](https://github.com/PopupMaker/Popup-Maker/issues/783)
|
classes/Integration/Form/GravityForms.php
CHANGED
@@ -70,7 +70,7 @@ class PUM_Integration_Form_GravityForms extends PUM_Abstract_Integration_Form {
|
|
70 |
}
|
71 |
|
72 |
// This key is set when Gravity Forms is submitted via AJAX.
|
73 |
-
if ( isset( $_POST['gform_ajax'] )
|
74 |
return;
|
75 |
}
|
76 |
|
70 |
}
|
71 |
|
72 |
// This key is set when Gravity Forms is submitted via AJAX.
|
73 |
+
if ( isset( $_POST['gform_ajax'] ) && ! is_null( $_POST['gform_ajax'] ) ) {
|
74 |
return;
|
75 |
}
|
76 |
|
popup-maker.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Popup Maker
|
4 |
* Plugin URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&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.13.
|
7 |
* Author: Popup Maker
|
8 |
* Author URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&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.13.
|
97 |
|
98 |
/**
|
99 |
* @var int DB Version
|
3 |
* Plugin Name: Popup Maker
|
4 |
* Plugin URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&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.13.1
|
7 |
* Author: Popup Maker
|
8 |
* Author URI: https://wppopupmaker.com/?utm_campaign=PluginInfo&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.13.1';
|
97 |
|
98 |
/**
|
99 |
* @var int DB Version
|
readme.txt
CHANGED
@@ -5,13 +5,13 @@ Plugin URI: https://wppopupmaker.com/?utm_campaign=readme&utm_medium=referral&ut
|
|
5 |
Donate link:
|
6 |
Tags: marketing, popup, popups, optin, conversion, responsive popups, promotion, popover, pop-up, pop over, lightbox, modal
|
7 |
Requires at least: 4.9
|
8 |
-
Tested up to: 5.
|
9 |
Requires PHP: 5.6
|
10 |
-
Stable tag: 1.13.
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
14 |
-
|
15 |
|
16 |
== Description ==
|
17 |
|
@@ -89,7 +89,7 @@ Already created a form in your email marketing service? Using our free version,
|
|
89 |
* Dictate the frequency at which users see your popups using **Cookies**, and edit how the cookies are created using Cookie Creation Events.
|
90 |
|
91 |
= Trusted by many people just like you! =
|
92 |
-
Popup Maker is used on over
|
93 |
|
94 |
> **Great plugin, everything I needed**
|
95 |
> "Really nice plugin, simple to use, responsive, a good catch !" ~[@lemmmy](https://wordpress.org/support/topic/great-plugin-everything-i-needed/)
|
@@ -148,11 +148,6 @@ Using "cookies", you can set up how long until the popup opens again, if ever. R
|
|
148 |
= What do I do if I want a popup to show only on a certain page/post/etc? =
|
149 |
Using "conditions", you can specify where the popup will be shown. Check out [our conditions documentation](https://docs.wppopupmaker.com/article/140-conditions?utm_campaign=readme&utm_medium=referral&utm_source=readme-faqs&utm_content=target-certain-pages)
|
150 |
|
151 |
-
= How do I make it work with my 3rd party forms? =
|
152 |
-
Beginning with Popup Maker v1.7, we now support most forms by default. We do this by adding a hidden field using JavaScript to any form inserted in a popup. This field contains the popup ID.
|
153 |
-
|
154 |
-
When we detect that ID in PHP, we queue up that popup to reopen immediately after refresh to show errors or success messages.
|
155 |
-
|
156 |
= How do I take advantage of the success actions Popup Maker provides for 3rd party forms? =
|
157 |
We have built-in support for the most popular form plugins. But if we don't, then we have a few helper functions that allow you to take full advantage of our success actions and setting cookies.
|
158 |
|
@@ -178,6 +173,9 @@ There are several common causes for this, check [this guide for help](https://do
|
|
178 |
|
179 |
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.
|
180 |
|
|
|
|
|
|
|
181 |
= [v1.13.0 - 10/30/2020](https://github.com/PopupMaker/Popup-Maker/milestone/26) =
|
182 |
* Feature: Conversion tracking [Issue #775](https://github.com/PopupMaker/Popup-Maker/issues/775)
|
183 |
* Feature: Bypass adblockers for tracking opens and conversions [Issue #783](https://github.com/PopupMaker/Popup-Maker/issues/783)
|
5 |
Donate link:
|
6 |
Tags: marketing, popup, popups, optin, conversion, responsive popups, promotion, popover, pop-up, pop over, lightbox, modal
|
7 |
Requires at least: 4.9
|
8 |
+
Tested up to: 5.6
|
9 |
Requires PHP: 5.6
|
10 |
+
Stable tag: 1.13.1
|
11 |
License: GPLv2 or later
|
12 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
13 |
|
14 |
+
Looking to boost your marketing and lead gen efforts? Using popups are a great way to increase your site's conversions!
|
15 |
|
16 |
== Description ==
|
17 |
|
89 |
* Dictate the frequency at which users see your popups using **Cookies**, and edit how the cookies are created using Cookie Creation Events.
|
90 |
|
91 |
= Trusted by many people just like you! =
|
92 |
+
Popup Maker is used on over 600,000 websites and has received over 3,900 5-star reviews just like this one:
|
93 |
|
94 |
> **Great plugin, everything I needed**
|
95 |
> "Really nice plugin, simple to use, responsive, a good catch !" ~[@lemmmy](https://wordpress.org/support/topic/great-plugin-everything-i-needed/)
|
148 |
= What do I do if I want a popup to show only on a certain page/post/etc? =
|
149 |
Using "conditions", you can specify where the popup will be shown. Check out [our conditions documentation](https://docs.wppopupmaker.com/article/140-conditions?utm_campaign=readme&utm_medium=referral&utm_source=readme-faqs&utm_content=target-certain-pages)
|
150 |
|
|
|
|
|
|
|
|
|
|
|
151 |
= How do I take advantage of the success actions Popup Maker provides for 3rd party forms? =
|
152 |
We have built-in support for the most popular form plugins. But if we don't, then we have a few helper functions that allow you to take full advantage of our success actions and setting cookies.
|
153 |
|
173 |
|
174 |
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.
|
175 |
|
176 |
+
= v1.13.1 - 11/4/2020 =
|
177 |
+
* Fix: PHP error notice appears when submitting Gravity Forms without AJAX
|
178 |
+
|
179 |
= [v1.13.0 - 10/30/2020](https://github.com/PopupMaker/Popup-Maker/milestone/26) =
|
180 |
* Feature: Conversion tracking [Issue #775](https://github.com/PopupMaker/Popup-Maker/issues/775)
|
181 |
* Feature: Bypass adblockers for tracking opens and conversions [Issue #783](https://github.com/PopupMaker/Popup-Maker/issues/783)
|