Popup Maker – Popup Forms, Optins & More - Version 1.16.11

Version Description

Download this release

Release Info

Developer codeatlantic
Plugin Icon 128x128 Popup Maker – Popup Forms, Optins & More
Version 1.16.11
Comparing to
See all releases

Code changes from version 1.16.10 to 1.16.11

classes/Admin/Templates.php CHANGED
@@ -75,7 +75,7 @@ class PUM_Admin_Templates {
75
 
76
  if (option.options !== undefined && option.options.length) { #>
77
 
78
- <optgroup label="{{{option.label}}}">
79
 
80
  <# _.each(option.options, function(option, key) { #>
81
  <option value="{{option.value}}" {{{option.meta}}}>{{option.label}}</option>
@@ -84,7 +84,7 @@ class PUM_Admin_Templates {
84
  </optgroup>
85
 
86
  <# } else { #>
87
- <option value="{{option.value}}" {{{option.meta}}}>{{{option.label}}}</option>
88
  <# }
89
 
90
  }); #>
@@ -97,7 +97,7 @@ class PUM_Admin_Templates {
97
  <li
98
  <# print(option.value === data.value ? 'class="pum-selected"' : ''); #>>
99
  <input type="radio" id="{{data.id}}_{{key}}" name="{{data.name}}" value="{{option.value}}" {{{option.meta}}}/>
100
- <label for="{{data.id}}_{{key}}">{{{option.label}}}</label>
101
  </li>
102
  <# }); #>
103
  </ul>
@@ -112,7 +112,7 @@ class PUM_Admin_Templates {
112
  <# _.each(data.options, function(option, key) { #>
113
  <li>
114
  <input type="checkbox" id="{{data.id}}_{{key}}" name="{{data.name}}[{{option.value}}]" value="{{option.value}}" {{{option.meta}}}/>
115
- <label for="{{data.id}}_{{key}}">{{{option.label}}}</label>
116
  </li>
117
  <# }); #>
118
  </ul>
@@ -183,9 +183,10 @@ class PUM_Admin_Templates {
183
  </script>
184
 
185
  <script type="text/html" id="tmpl-pum-field-measure">
186
- <input type="number" id="{{data.id}}" name="{{data.name}}" value="{{data.value}}" size="5" {{{data.meta}}}/> <select id="{{data.id}}_unit" name="<# print(data.name.replace(data.id, data.id + '_unit')); #>">
 
187
  <# _.each(data.units, function(option, key) { #>
188
- <option value="{{option.value}}" {{{option.meta}}}>{{{option.label}}}</option>
189
  <# }); #>
190
  </select>
191
  </script>
@@ -281,7 +282,7 @@ class PUM_Admin_Templates {
281
  data-id="{{data.id}}" <# print( data.dependencies !== '' ? "data-pum-dependencies='" + data.dependencies + "'" : ''); #> <# print( data.dynamic_desc !== '' ? "data-pum-dynamic-desc='" + data.dynamic_desc + "'" : ''); #>>
282
  <# if (typeof data.label === 'string' && data.label.length > 0) { #>
283
  <label for="{{data.id}}">
284
- {{{data.label}}}
285
  <# if (typeof data.doclink === 'string' && data.doclink !== '') { #>
286
  <a href="{{data.doclink}}" title="<?php _e( 'Documentation', 'popup-maker' ); ?>: {{data.label}}" target="_blank" class="pum-doclink dashicons dashicons-editor-help"></a>
287
  <# } #>
@@ -484,7 +485,7 @@ class PUM_Admin_Templates {
484
 
485
  <script type="text/html" id="tmpl-pum-trigger-add-type">
486
  <#
487
- var form_args =
488
  <?php
489
  echo PUM_Utils_Array::safe_json_encode(
490
  [
75
 
76
  if (option.options !== undefined && option.options.length) { #>
77
 
78
+ <optgroup label="{{option.label}}">
79
 
80
  <# _.each(option.options, function(option, key) { #>
81
  <option value="{{option.value}}" {{{option.meta}}}>{{option.label}}</option>
84
  </optgroup>
85
 
86
  <# } else { #>
87
+ <option value="{{option.value}}" {{{option.meta}}}>{{option.label}}</option>
88
  <# }
89
 
90
  }); #>
97
  <li
98
  <# print(option.value === data.value ? 'class="pum-selected"' : ''); #>>
99
  <input type="radio" id="{{data.id}}_{{key}}" name="{{data.name}}" value="{{option.value}}" {{{option.meta}}}/>
100
+ <label for="{{data.id}}_{{key}}">{{option.label}}</label>
101
  </li>
102
  <# }); #>
103
  </ul>
112
  <# _.each(data.options, function(option, key) { #>
113
  <li>
114
  <input type="checkbox" id="{{data.id}}_{{key}}" name="{{data.name}}[{{option.value}}]" value="{{option.value}}" {{{option.meta}}}/>
115
+ <label for="{{data.id}}_{{key}}">{{option.label}}</label>
116
  </li>
117
  <# }); #>
118
  </ul>
183
  </script>
184
 
185
  <script type="text/html" id="tmpl-pum-field-measure">
186
+ <input type="number" id="{{data.id}}" name="{{data.name}}" value="{{data.value}}" size="5" {{{data.meta}}}/>
187
+ <select id="{{data.id}}_unit" name="<# print(data.name.replace(data.id, data.id + '_unit')); #>">
188
  <# _.each(data.units, function(option, key) { #>
189
+ <option value="{{option.value}}" {{{option.meta}}}>{{option.label}}</option>
190
  <# }); #>
191
  </select>
192
  </script>
282
  data-id="{{data.id}}" <# print( data.dependencies !== '' ? "data-pum-dependencies='" + data.dependencies + "'" : ''); #> <# print( data.dynamic_desc !== '' ? "data-pum-dynamic-desc='" + data.dynamic_desc + "'" : ''); #>>
283
  <# if (typeof data.label === 'string' && data.label.length > 0) { #>
284
  <label for="{{data.id}}">
285
+ {{data.label}}
286
  <# if (typeof data.doclink === 'string' && data.doclink !== '') { #>
287
  <a href="{{data.doclink}}" title="<?php _e( 'Documentation', 'popup-maker' ); ?>: {{data.label}}" target="_blank" class="pum-doclink dashicons dashicons-editor-help"></a>
288
  <# } #>
485
 
486
  <script type="text/html" id="tmpl-pum-trigger-add-type">
487
  <#
488
+ var form_args =
489
  <?php
490
  echo PUM_Utils_Array::safe_json_encode(
491
  [
classes/Shortcode/PopupClose.php CHANGED
@@ -116,7 +116,10 @@ class PUM_Shortcode_PopupClose extends PUM_Shortcode {
116
 
117
  $atts = parent::shortcode_atts( $atts );
118
 
119
- if ( empty( $atts['tag'] ) || ! in_array( $atts['tag'], array_keys( $allowedtags ) ) ) {
 
 
 
120
  $atts['tag'] = 'span';
121
  }
122
 
116
 
117
  $atts = parent::shortcode_atts( $atts );
118
 
119
+ // Add button to allowed tags.
120
+ $tags_allowed = array_merge( array_keys( $allowedtags ), [ 'button' ] ) ;
121
+
122
+ if ( empty( $atts['tag'] ) || ! in_array( $atts['tag'], $tags_allowed ) ) {
123
  $atts['tag'] = 'span';
124
  }
125
 
classes/Shortcode/PopupTrigger.php CHANGED
@@ -171,7 +171,10 @@ class PUM_Shortcode_PopupTrigger extends PUM_Shortcode {
171
 
172
  $atts = parent::shortcode_atts( $atts );
173
 
174
- if ( empty( $atts['tag'] ) || ! in_array( $atts['tag'], array_keys( $allowedtags ) ) ) {
 
 
 
175
  $atts['tag'] = 'span';
176
  }
177
 
171
 
172
  $atts = parent::shortcode_atts( $atts );
173
 
174
+ // Add button to allowed tags.
175
+ $tags_allowed = array_merge( array_keys( $allowedtags ), [ 'button' ] ) ;
176
+
177
+ if ( empty( $atts['tag'] ) || ! in_array( $atts['tag'], $tags_allowed ) ) {
178
  $atts['tag'] = 'span';
179
  }
180
 
languages/popup-maker.pot CHANGED
@@ -19,7 +19,7 @@ msgstr ""
19
  msgid "Integrations"
20
  msgstr ""
21
 
22
- #: classes/Admin.php:61, classes/Admin/Pages.php:58, classes/Admin/Pages.php:160, classes/Admin/Templates.php:415, classes/Admin/Templates.php:659, classes/Site/Assets.php:276
23
  msgid "Settings"
24
  msgstr ""
25
 
@@ -483,7 +483,7 @@ msgstr ""
483
  msgid "Email"
484
  msgstr ""
485
 
486
- #: classes/Privacy.php:232, classes/Admin/Popups.php:1157, classes/Admin/Templates.php:658, classes/Shortcode/Subscribe.php:187, classes/Shortcode/Subscribe.php:241
487
  msgid "Name"
488
  msgstr ""
489
 
@@ -604,11 +604,11 @@ msgstr ""
604
  msgid "Choose which cookies will disable this trigger?"
605
  msgstr ""
606
 
607
- #: classes/Triggers.php:338, classes/Admin/Templates.php:644
608
  msgid "Add New Cookie"
609
  msgstr ""
610
 
611
- #: classes/Triggers.php:361, classes/Admin/Templates.php:414
612
  msgid "Cookie"
613
  msgstr ""
614
 
@@ -901,7 +901,7 @@ msgstr ""
901
  msgid "Content Only - For use with page builders or block editor"
902
  msgstr ""
903
 
904
- #: templates/popup.php:48, classes/Admin/Helpers.php:387, classes/Admin/Popups.php:376, classes/Admin/Popups.php:810, classes/Admin/Templates.php:334, classes/Admin/Themes.php:173, classes/Admin/Themes.php:350, classes/Shortcode/Popup.php:55, classes/Shortcode/Popup.php:79
905
  msgid "Close"
906
  msgstr ""
907
 
@@ -929,7 +929,7 @@ msgstr ""
929
  msgid "Preview"
930
  msgstr ""
931
 
932
- #: classes/Admin/Assets.php:72, classes/Admin/Helpers.php:368, classes/Admin/Templates.php:534, classes/Admin/Templates.php:710
933
  msgid "Add"
934
  msgstr ""
935
 
@@ -1916,185 +1916,185 @@ msgstr ""
1916
  msgid "Check"
1917
  msgstr ""
1918
 
1919
- #: classes/Admin/Templates.php:199
1920
  msgid "Active"
1921
  msgstr ""
1922
 
1923
- #: classes/Admin/Templates.php:200
1924
  msgid "Deactivate License"
1925
  msgstr ""
1926
 
1927
- #: classes/Admin/Templates.php:202
1928
  msgid "Inactive"
1929
  msgstr ""
1930
 
1931
- #: classes/Admin/Templates.php:203
1932
  msgid "Activate License"
1933
  msgstr ""
1934
 
1935
- #: classes/Admin/Templates.php:242
1936
  msgid "Category"
1937
  msgstr ""
1938
 
1939
- #: classes/Admin/Templates.php:246
1940
  msgid "Action"
1941
  msgstr ""
1942
 
1943
- #: classes/Admin/Templates.php:250
1944
  msgid "Label"
1945
  msgstr ""
1946
 
1947
- #: classes/Admin/Templates.php:254
1948
  msgid "Value"
1949
  msgstr ""
1950
 
1951
- #: classes/Admin/Templates.php:286, classes/Admin/Templates.php:291
1952
  msgid "Documentation"
1953
  msgstr ""
1954
 
1955
- #: classes/Admin/Templates.php:400
1956
  msgid "Add New Trigger"
1957
  msgstr ""
1958
 
1959
- #: classes/Admin/Templates.php:404
1960
  msgid "Triggers cause a popup to open."
1961
  msgstr ""
1962
 
1963
- #: classes/Admin/Templates.php:413
1964
  msgid "Type"
1965
  msgstr ""
1966
 
1967
- #: classes/Admin/Templates.php:416, classes/Admin/Templates.php:660, classes/Shortcode/Subscribe.php:63
1968
  msgid "Actions"
1969
  msgstr ""
1970
 
1971
- #: classes/Admin/Templates.php:445, classes/Admin/Templates.php:454
1972
  msgid "Edit this trigger"
1973
  msgstr ""
1974
 
1975
- #: classes/Admin/Templates.php:455
1976
  msgid "Delete this trigger"
1977
  msgstr ""
1978
 
1979
- #: classes/Admin/Templates.php:464
1980
  msgid "Link: Exact Match"
1981
  msgstr ""
1982
 
1983
- #: classes/Admin/Templates.php:465
1984
  msgid "Link: Containing"
1985
  msgstr ""
1986
 
1987
- #: classes/Admin/Templates.php:466
1988
  msgid "Link: Begins With"
1989
  msgstr ""
1990
 
1991
- #: classes/Admin/Templates.php:467
1992
  msgid "Link: Ends With"
1993
  msgstr ""
1994
 
1995
- #: classes/Admin/Templates.php:474
1996
  msgid "Insert Preset"
1997
  msgstr ""
1998
 
1999
- #: classes/Admin/Templates.php:496
2000
  msgid "What kind of trigger do you want?"
2001
  msgstr ""
2002
 
2003
- #: classes/Admin/Templates.php:505
2004
  msgid "Prevent popup from showing to visitor again using a cookie?"
2005
  msgstr ""
2006
 
2007
- #: classes/Admin/Templates.php:512
2008
  msgid "Stop showing popup once visitor takes this action:"
2009
  msgstr ""
2010
 
2011
- #: classes/Admin/Templates.php:532
2012
  msgid "New Trigger"
2013
  msgstr ""
2014
 
2015
- #: classes/Admin/Templates.php:556
2016
  msgid "Conditions allow you to show your popup to a targeted segment of your sites users."
2017
  msgstr ""
2018
 
2019
- #: classes/Admin/Templates.php:558
2020
  msgid "Learn more about %s"
2021
  msgstr ""
2022
 
2023
- #: classes/Admin/Templates.php:558
2024
  msgid "Targeting Conditions"
2025
  msgstr ""
2026
 
2027
- #: classes/Admin/Templates.php:563
2028
  msgid "By default, this popup will be loaded on every page of your site for all users."
2029
  msgstr ""
2030
 
2031
- #: classes/Admin/Templates.php:564
2032
  msgid "Target the popup to a specific segment by adding conditions below."
2033
  msgstr ""
2034
 
2035
- #: classes/Admin/Templates.php:565
2036
  msgid "Click the %1$s button for any condition to check the opposite of the chosen condition. The button will turn red %2$s when active."
2037
  msgstr ""
2038
 
2039
- #: classes/Admin/Templates.php:580
2040
  msgid "Choose a condition to target your popup to specific content or various other segments."
2041
  msgstr ""
2042
 
2043
- #: classes/Admin/Templates.php:582, classes/Admin/Templates.php:614
2044
  msgid "Enable the Not Operand"
2045
  msgstr ""
2046
 
2047
- #: classes/Admin/Templates.php:585, classes/Admin/Templates.php:618
2048
  msgid "Choose a condition"
2049
  msgstr ""
2050
 
2051
- #: classes/Admin/Templates.php:601
2052
  msgctxt "aria-label for add new OR condition button"
2053
  msgid "Add another OR condition"
2054
  msgstr ""
2055
 
2056
- #: classes/Admin/Templates.php:601, classes/Admin/Templates.php:612
2057
  msgid "or"
2058
  msgstr ""
2059
 
2060
- #: classes/Admin/Templates.php:605
2061
  msgctxt "aria-label for add new AND condition button"
2062
  msgid "Add another AND condition group"
2063
  msgstr ""
2064
 
2065
- #: classes/Admin/Templates.php:605
2066
  msgid "and"
2067
  msgstr ""
2068
 
2069
- #: classes/Admin/Templates.php:626
2070
  msgid "Remove Condition"
2071
  msgstr ""
2072
 
2073
- #: classes/Admin/Templates.php:648
2074
  msgid "Cookies control the repeat display of a popup."
2075
  msgstr ""
2076
 
2077
- #: classes/Admin/Templates.php:657
2078
  msgid "Event"
2079
  msgstr ""
2080
 
2081
- #: classes/Admin/Templates.php:689, classes/Admin/Templates.php:698
2082
  msgid "Edit this cookie"
2083
  msgstr ""
2084
 
2085
- #: classes/Admin/Templates.php:699
2086
  msgid "Delete this cookie"
2087
  msgstr ""
2088
 
2089
- #: classes/Admin/Templates.php:708
2090
  msgid "When should your cookie be created?"
2091
  msgstr ""
2092
 
2093
- #: classes/Admin/Templates.php:709
2094
  msgid "Select a cookie type."
2095
  msgstr ""
2096
 
2097
- #: classes/Admin/Templates.php:717
2098
  msgid "Reset Cookie Key"
2099
  msgstr ""
2100
 
19
  msgid "Integrations"
20
  msgstr ""
21
 
22
+ #: classes/Admin.php:61, classes/Admin/Pages.php:58, classes/Admin/Pages.php:160, classes/Admin/Templates.php:416, classes/Admin/Templates.php:660, classes/Site/Assets.php:276
23
  msgid "Settings"
24
  msgstr ""
25
 
483
  msgid "Email"
484
  msgstr ""
485
 
486
+ #: classes/Privacy.php:232, classes/Admin/Popups.php:1157, classes/Admin/Templates.php:659, classes/Shortcode/Subscribe.php:187, classes/Shortcode/Subscribe.php:241
487
  msgid "Name"
488
  msgstr ""
489
 
604
  msgid "Choose which cookies will disable this trigger?"
605
  msgstr ""
606
 
607
+ #: classes/Triggers.php:338, classes/Admin/Templates.php:645
608
  msgid "Add New Cookie"
609
  msgstr ""
610
 
611
+ #: classes/Triggers.php:361, classes/Admin/Templates.php:415
612
  msgid "Cookie"
613
  msgstr ""
614
 
901
  msgid "Content Only - For use with page builders or block editor"
902
  msgstr ""
903
 
904
+ #: templates/popup.php:48, classes/Admin/Helpers.php:387, classes/Admin/Popups.php:376, classes/Admin/Popups.php:810, classes/Admin/Templates.php:335, classes/Admin/Themes.php:173, classes/Admin/Themes.php:350, classes/Shortcode/Popup.php:55, classes/Shortcode/Popup.php:79
905
  msgid "Close"
906
  msgstr ""
907
 
929
  msgid "Preview"
930
  msgstr ""
931
 
932
+ #: classes/Admin/Assets.php:72, classes/Admin/Helpers.php:368, classes/Admin/Templates.php:535, classes/Admin/Templates.php:711
933
  msgid "Add"
934
  msgstr ""
935
 
1916
  msgid "Check"
1917
  msgstr ""
1918
 
1919
+ #: classes/Admin/Templates.php:200
1920
  msgid "Active"
1921
  msgstr ""
1922
 
1923
+ #: classes/Admin/Templates.php:201
1924
  msgid "Deactivate License"
1925
  msgstr ""
1926
 
1927
+ #: classes/Admin/Templates.php:203
1928
  msgid "Inactive"
1929
  msgstr ""
1930
 
1931
+ #: classes/Admin/Templates.php:204
1932
  msgid "Activate License"
1933
  msgstr ""
1934
 
1935
+ #: classes/Admin/Templates.php:243
1936
  msgid "Category"
1937
  msgstr ""
1938
 
1939
+ #: classes/Admin/Templates.php:247
1940
  msgid "Action"
1941
  msgstr ""
1942
 
1943
+ #: classes/Admin/Templates.php:251
1944
  msgid "Label"
1945
  msgstr ""
1946
 
1947
+ #: classes/Admin/Templates.php:255
1948
  msgid "Value"
1949
  msgstr ""
1950
 
1951
+ #: classes/Admin/Templates.php:287, classes/Admin/Templates.php:292
1952
  msgid "Documentation"
1953
  msgstr ""
1954
 
1955
+ #: classes/Admin/Templates.php:401
1956
  msgid "Add New Trigger"
1957
  msgstr ""
1958
 
1959
+ #: classes/Admin/Templates.php:405
1960
  msgid "Triggers cause a popup to open."
1961
  msgstr ""
1962
 
1963
+ #: classes/Admin/Templates.php:414
1964
  msgid "Type"
1965
  msgstr ""
1966
 
1967
+ #: classes/Admin/Templates.php:417, classes/Admin/Templates.php:661, classes/Shortcode/Subscribe.php:63
1968
  msgid "Actions"
1969
  msgstr ""
1970
 
1971
+ #: classes/Admin/Templates.php:446, classes/Admin/Templates.php:455
1972
  msgid "Edit this trigger"
1973
  msgstr ""
1974
 
1975
+ #: classes/Admin/Templates.php:456
1976
  msgid "Delete this trigger"
1977
  msgstr ""
1978
 
1979
+ #: classes/Admin/Templates.php:465
1980
  msgid "Link: Exact Match"
1981
  msgstr ""
1982
 
1983
+ #: classes/Admin/Templates.php:466
1984
  msgid "Link: Containing"
1985
  msgstr ""
1986
 
1987
+ #: classes/Admin/Templates.php:467
1988
  msgid "Link: Begins With"
1989
  msgstr ""
1990
 
1991
+ #: classes/Admin/Templates.php:468
1992
  msgid "Link: Ends With"
1993
  msgstr ""
1994
 
1995
+ #: classes/Admin/Templates.php:475
1996
  msgid "Insert Preset"
1997
  msgstr ""
1998
 
1999
+ #: classes/Admin/Templates.php:497
2000
  msgid "What kind of trigger do you want?"
2001
  msgstr ""
2002
 
2003
+ #: classes/Admin/Templates.php:506
2004
  msgid "Prevent popup from showing to visitor again using a cookie?"
2005
  msgstr ""
2006
 
2007
+ #: classes/Admin/Templates.php:513
2008
  msgid "Stop showing popup once visitor takes this action:"
2009
  msgstr ""
2010
 
2011
+ #: classes/Admin/Templates.php:533
2012
  msgid "New Trigger"
2013
  msgstr ""
2014
 
2015
+ #: classes/Admin/Templates.php:557
2016
  msgid "Conditions allow you to show your popup to a targeted segment of your sites users."
2017
  msgstr ""
2018
 
2019
+ #: classes/Admin/Templates.php:559
2020
  msgid "Learn more about %s"
2021
  msgstr ""
2022
 
2023
+ #: classes/Admin/Templates.php:559
2024
  msgid "Targeting Conditions"
2025
  msgstr ""
2026
 
2027
+ #: classes/Admin/Templates.php:564
2028
  msgid "By default, this popup will be loaded on every page of your site for all users."
2029
  msgstr ""
2030
 
2031
+ #: classes/Admin/Templates.php:565
2032
  msgid "Target the popup to a specific segment by adding conditions below."
2033
  msgstr ""
2034
 
2035
+ #: classes/Admin/Templates.php:566
2036
  msgid "Click the %1$s button for any condition to check the opposite of the chosen condition. The button will turn red %2$s when active."
2037
  msgstr ""
2038
 
2039
+ #: classes/Admin/Templates.php:581
2040
  msgid "Choose a condition to target your popup to specific content or various other segments."
2041
  msgstr ""
2042
 
2043
+ #: classes/Admin/Templates.php:583, classes/Admin/Templates.php:615
2044
  msgid "Enable the Not Operand"
2045
  msgstr ""
2046
 
2047
+ #: classes/Admin/Templates.php:586, classes/Admin/Templates.php:619
2048
  msgid "Choose a condition"
2049
  msgstr ""
2050
 
2051
+ #: classes/Admin/Templates.php:602
2052
  msgctxt "aria-label for add new OR condition button"
2053
  msgid "Add another OR condition"
2054
  msgstr ""
2055
 
2056
+ #: classes/Admin/Templates.php:602, classes/Admin/Templates.php:613
2057
  msgid "or"
2058
  msgstr ""
2059
 
2060
+ #: classes/Admin/Templates.php:606
2061
  msgctxt "aria-label for add new AND condition button"
2062
  msgid "Add another AND condition group"
2063
  msgstr ""
2064
 
2065
+ #: classes/Admin/Templates.php:606
2066
  msgid "and"
2067
  msgstr ""
2068
 
2069
+ #: classes/Admin/Templates.php:627
2070
  msgid "Remove Condition"
2071
  msgstr ""
2072
 
2073
+ #: classes/Admin/Templates.php:649
2074
  msgid "Cookies control the repeat display of a popup."
2075
  msgstr ""
2076
 
2077
+ #: classes/Admin/Templates.php:658
2078
  msgid "Event"
2079
  msgstr ""
2080
 
2081
+ #: classes/Admin/Templates.php:690, classes/Admin/Templates.php:699
2082
  msgid "Edit this cookie"
2083
  msgstr ""
2084
 
2085
+ #: classes/Admin/Templates.php:700
2086
  msgid "Delete this cookie"
2087
  msgstr ""
2088
 
2089
+ #: classes/Admin/Templates.php:709
2090
  msgid "When should your cookie be created?"
2091
  msgstr ""
2092
 
2093
+ #: classes/Admin/Templates.php:710
2094
  msgid "Select a cookie type."
2095
  msgstr ""
2096
 
2097
+ #: classes/Admin/Templates.php:718
2098
  msgid "Reset Cookie Key"
2099
  msgstr ""
2100
 
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.10
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
@@ -99,7 +99,7 @@ class Popup_Maker {
99
  /**
100
  * @var string Plugin Version
101
  */
102
- public static $VER = '1.16.10';
103
 
104
  /**
105
  * @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.11
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
99
  /**
100
  * @var string Plugin Version
101
  */
102
+ public static $VER = '1.16.11';
103
 
104
  /**
105
  * @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: 6.0.2
9
  Requires PHP: 5.6
10
- Stable tag: 1.16.10
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.10 - 10/18/2022 =
185
 
186
  * Improvement: Added nonce to previews.
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.1
9
  Requires PHP: 5.6
10
+ Stable tag: 1.16.11
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.11 - 10/25/2022 =
185
+
186
+ * Security: Cleaned up mustache js templates usage of unescaped output.
187
+ * Fix: Bug in `popup_trigger` & `popup_close` shortcode's when using `tag="button"`.
188
+
189
  = v1.16.10 - 10/18/2022 =
190
 
191
  * Improvement: Added nonce to previews.