Version Description
Download this release
Release Info
Developer | danieliser |
Plugin | Popup Maker – Popup Forms, Optins & More |
Version | 1.3.4 |
Comparing to | |
See all releases |
Code changes from version 1.3.3 to 1.3.4
- includes/css-functions.php +4 -4
- popup-maker.php +2 -2
- readme.txt +4 -1
includes/css-functions.php
CHANGED
@@ -91,9 +91,9 @@ function popmake_generate_theme_styles( $popup_theme_id ) {
|
|
91 |
'text-shadow' => popmake_get_text_shadow_style( $title['textshadow_horizontal'], $title['textshadow_vertical'], $title['textshadow_blur'], $title['textshadow_color'], $title['textshadow_opacity'] ),
|
92 |
'font-family' => $title['font_family'],
|
93 |
'font-weight' => $title['font_weight'],
|
94 |
-
'font-size' => $title['font_size'],
|
95 |
'font-style' => $title['font_style'],
|
96 |
-
'line-height' => $title['line_height'],
|
97 |
);
|
98 |
|
99 |
/*
|
@@ -120,9 +120,9 @@ function popmake_generate_theme_styles( $popup_theme_id ) {
|
|
120 |
'color' => $close['font_color'],
|
121 |
'font-family' => $close['font_family'],
|
122 |
'font-weight' => $close['font_weight'],
|
123 |
-
'font-size' => $close['font_size'],
|
124 |
'font-style' => $close['font_style'],
|
125 |
-
'line-height' => $close['line_height'],
|
126 |
'border' => popmake_get_border_style( $close['border_width'], $close['border_style'], $close['border_color'] ),
|
127 |
'border-radius' => "{$close['border_radius']}px",
|
128 |
'box-shadow' => popmake_get_box_shadow_style( $close['boxshadow_horizontal'], $close['boxshadow_vertical'], $close['boxshadow_blur'], $close['boxshadow_spread'], $close['boxshadow_color'], $close['boxshadow_opacity'], $close['boxshadow_inset'] ),
|
91 |
'text-shadow' => popmake_get_text_shadow_style( $title['textshadow_horizontal'], $title['textshadow_vertical'], $title['textshadow_blur'], $title['textshadow_color'], $title['textshadow_opacity'] ),
|
92 |
'font-family' => $title['font_family'],
|
93 |
'font-weight' => $title['font_weight'],
|
94 |
+
'font-size' => "{$title['font_size']}px",
|
95 |
'font-style' => $title['font_style'],
|
96 |
+
'line-height' => "{$title['line_height']}px",
|
97 |
);
|
98 |
|
99 |
/*
|
120 |
'color' => $close['font_color'],
|
121 |
'font-family' => $close['font_family'],
|
122 |
'font-weight' => $close['font_weight'],
|
123 |
+
'font-size' => "{$close['font_size']}px",
|
124 |
'font-style' => $close['font_style'],
|
125 |
+
'line-height' => "{$close['line_height']}px",
|
126 |
'border' => popmake_get_border_style( $close['border_width'], $close['border_style'], $close['border_color'] ),
|
127 |
'border-radius' => "{$close['border_radius']}px",
|
128 |
'box-shadow' => popmake_get_box_shadow_style( $close['boxshadow_horizontal'], $close['boxshadow_vertical'], $close['boxshadow_blur'], $close['boxshadow_spread'], $close['boxshadow_color'], $close['boxshadow_opacity'], $close['boxshadow_inset'] ),
|
popup-maker.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
* Plugin URI: https://wppopupmaker.com
|
5 |
* Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
|
6 |
* Author: Daniel Iser
|
7 |
-
* Version: 1.3.
|
8 |
* Author URI: https://wppopupmaker.com
|
9 |
* Text Domain: popup-maker
|
10 |
*
|
@@ -144,7 +144,7 @@ if ( ! class_exists( 'Popup_Maker' ) ) :
|
|
144 |
}
|
145 |
|
146 |
if ( ! defined( 'POPMAKE_VERSION' ) ) {
|
147 |
-
define( 'POPMAKE_VERSION', '1.3.
|
148 |
}
|
149 |
|
150 |
if ( ! defined( 'POPMAKE_DB_VERSION' ) ) {
|
4 |
* Plugin URI: https://wppopupmaker.com
|
5 |
* Description: Easily create & style popups with any content. Theme editor to quickly style your popups. Add forms, social media boxes, videos & more.
|
6 |
* Author: Daniel Iser
|
7 |
+
* Version: 1.3.4
|
8 |
* Author URI: https://wppopupmaker.com
|
9 |
* Text Domain: popup-maker
|
10 |
*
|
144 |
}
|
145 |
|
146 |
if ( ! defined( 'POPMAKE_VERSION' ) ) {
|
147 |
+
define( 'POPMAKE_VERSION', '1.3.4' );
|
148 |
}
|
149 |
|
150 |
if ( ! defined( 'POPMAKE_DB_VERSION' ) ) {
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Donate link:
|
|
6 |
Tags: age restriction, age verification, auto open, automatic popup, conversion, conversions, custom popup, dialog box, exit intent, fancy box, fancy popup, form modal, full page popup, full screen pop, full screen popup, marketing, modal, modals, onclick popup, optin popup, pop-up, pop-ups, popup, popup ads, popup advertising, popup box, popup form, popup message, popup window, popups, unblockable, wordpress popup
|
7 |
Requires at least: 3.4
|
8 |
Tested up to: 4.2.4
|
9 |
-
Stable tag: 1.3.
|
10 |
License: GNU Version 2 or Any Later Version
|
11 |
|
12 |
The most versatile popup plugin for WordPress! Grow email subscriber lists, get more FB Likes, create login modals, content restriction & more.
|
@@ -103,6 +103,9 @@ There are several common causes for this which include:
|
|
103 |
|
104 |
== Changelog ==
|
105 |
|
|
|
|
|
|
|
106 |
= v1.3.3 - 8/12/2015 =
|
107 |
* Fix: Added current_action fallback function for older versions of WP.
|
108 |
* Fix: Theme CSS rendering incorrect font settings.
|
6 |
Tags: age restriction, age verification, auto open, automatic popup, conversion, conversions, custom popup, dialog box, exit intent, fancy box, fancy popup, form modal, full page popup, full screen pop, full screen popup, marketing, modal, modals, onclick popup, optin popup, pop-up, pop-ups, popup, popup ads, popup advertising, popup box, popup form, popup message, popup window, popups, unblockable, wordpress popup
|
7 |
Requires at least: 3.4
|
8 |
Tested up to: 4.2.4
|
9 |
+
Stable tag: 1.3.4
|
10 |
License: GNU Version 2 or Any Later Version
|
11 |
|
12 |
The most versatile popup plugin for WordPress! Grow email subscriber lists, get more FB Likes, create login modals, content restriction & more.
|
103 |
|
104 |
== Changelog ==
|
105 |
|
106 |
+
= v1.3.4 - 8/12/2015 =
|
107 |
+
* Fix: Added px to font-size & line-height.
|
108 |
+
|
109 |
= v1.3.3 - 8/12/2015 =
|
110 |
* Fix: Added current_action fallback function for older versions of WP.
|
111 |
* Fix: Theme CSS rendering incorrect font settings.
|