Version Description
- Fix: Possible issue with billing address format.
Download this release
Release Info
Developer | britner |
Plugin | Kadence WooCommerce Email Designer |
Version | 1.4.7 |
Comparing to | |
See all releases |
Code changes from version 1.4.6 to 1.4.7
kadence-woocommerce-email-designer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Kadence WooCommerce Email Designer
|
4 |
* Plugin URI: http://kadencewp.com/products/woocommerce-email-designer/
|
5 |
* Description: Customize the default woocommerce email templates design and text through the native WordPress customizer. Preview emails and send test emails.
|
6 |
-
* Version: 1.4.
|
7 |
* Author: Kadence WP
|
8 |
* Author URI: http://kadencewp.com/
|
9 |
* License: GPLv2 or later
|
@@ -59,7 +59,7 @@ class Kadence_Woomail_Designer {
|
|
59 |
|
60 |
define( 'KT_WOOMAIL_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
|
61 |
define( 'KT_WOOMAIL_URL', plugin_dir_url( __FILE__ ) );
|
62 |
-
define( 'KT_WOOMAIL_VERSION', '1.4.
|
63 |
|
64 |
if ( ! kadence_woomail_is_woo_active() ) {
|
65 |
add_action( 'admin_notices', array( $this, 'admin_notice_need_woocommerce' ) );
|
3 |
* Plugin Name: Kadence WooCommerce Email Designer
|
4 |
* Plugin URI: http://kadencewp.com/products/woocommerce-email-designer/
|
5 |
* Description: Customize the default woocommerce email templates design and text through the native WordPress customizer. Preview emails and send test emails.
|
6 |
+
* Version: 1.4.7
|
7 |
* Author: Kadence WP
|
8 |
* Author URI: http://kadencewp.com/
|
9 |
* License: GPLv2 or later
|
59 |
|
60 |
define( 'KT_WOOMAIL_PATH', realpath( plugin_dir_path( __FILE__ ) ) . DIRECTORY_SEPARATOR );
|
61 |
define( 'KT_WOOMAIL_URL', plugin_dir_url( __FILE__ ) );
|
62 |
+
define( 'KT_WOOMAIL_VERSION', '1.4.7' );
|
63 |
|
64 |
if ( ! kadence_woomail_is_woo_active() ) {
|
65 |
add_action( 'admin_notices', array( $this, 'admin_notice_need_woocommerce' ) );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://www.kadencewp.com/about-us/
|
|
5 |
Requires PHP: 5.2.4
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 5.6.0
|
8 |
-
Stable tag: 1.4.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -81,6 +81,9 @@ After you create your translations make sure to clear your server cache from any
|
|
81 |
|
82 |
== Changelog ==
|
83 |
|
|
|
|
|
|
|
84 |
= 1.4.6 =
|
85 |
* Fix: Button Text color not changing.
|
86 |
* Fix: Import/Export support for special characters.
|
5 |
Requires PHP: 5.2.4
|
6 |
Requires at least: 5.0
|
7 |
Tested up to: 5.6.0
|
8 |
+
Stable tag: 1.4.7
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
81 |
|
82 |
== Changelog ==
|
83 |
|
84 |
+
= 1.4.7 =
|
85 |
+
* Fix: Possible issue with billing address format.
|
86 |
+
|
87 |
= 1.4.6 =
|
88 |
* Fix: Button Text color not changing.
|
89 |
* Fix: Import/Export support for special characters.
|
templates/woo/emails/email-styles.php
CHANGED
@@ -201,6 +201,9 @@ body {
|
|
201 |
color: <?php echo esc_attr( $text_lighter_20 ); ?>;
|
202 |
border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>;
|
203 |
}
|
|
|
|
|
|
|
204 |
#body_content .address p {
|
205 |
margin: 0;
|
206 |
}
|
201 |
color: <?php echo esc_attr( $text_lighter_20 ); ?>;
|
202 |
border: 1px solid <?php echo esc_attr( $body_darker_10 ); ?>;
|
203 |
}
|
204 |
+
.address-td a {
|
205 |
+
display: block;
|
206 |
+
}
|
207 |
#body_content .address p {
|
208 |
margin: 0;
|
209 |
}
|