Kadence WooCommerce Email Designer - Version 1.3.9

Version Description

  • Update: Prevent some third-party issues with filter arguments.
Download this release

Release Info

Developer britner
Plugin Icon 128x128 Kadence WooCommerce Email Designer
Version 1.3.9
Comparing to
See all releases

Code changes from version 1.3.8 to 1.3.9

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.3.8
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.3.8' );
63
 
64
  if ( ! kadence_woomail_is_woo_active() ) {
65
  add_action( 'admin_notices', array( $this, 'admin_notice_need_woocommerce' ) );
@@ -138,8 +138,8 @@ class Kadence_Woomail_Designer {
138
  * @param object $email the Email object.
139
  * @return string the Email css.
140
  */
141
- public function check_to_add_gmail_hack( $css, $email ) {
142
- add_filter( 'woocommerce_mail_content', array( $this, 'add_gmail_hack' ), 50 );
143
  return $css;
144
  }
145
  /**
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.3.9
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.3.9' );
63
 
64
  if ( ! kadence_woomail_is_woo_active() ) {
65
  add_action( 'admin_notices', array( $this, 'admin_notice_need_woocommerce' ) );
138
  * @param object $email the Email object.
139
  * @return string the Email css.
140
  */
141
+ public function check_to_add_gmail_hack( $css, $email = '' ) {
142
+ add_filter( 'woocommerce_mail_content', array( $this, 'add_gmail_hack' ), 50 );
143
  return $css;
144
  }
145
  /**
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: 4.4
7
  Tested up to: 5.3.2
8
- Stable tag: 1.3.8
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -60,6 +60,9 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
60
 
61
  == Changelog ==
62
 
 
 
 
63
  = 1.3.8 =
64
  * Update: Fix bug in plan text email.
65
  * Update: Add $email default to prevent some fatal errors with plugins using non standard email templates.
5
  Requires PHP: 5.2.4
6
  Requires at least: 4.4
7
  Tested up to: 5.3.2
8
+ Stable tag: 1.3.9
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
60
 
61
  == Changelog ==
62
 
63
+ = 1.3.9 =
64
+ * Update: Prevent some third-party issues with filter arguments.
65
+
66
  = 1.3.8 =
67
  * Update: Fix bug in plan text email.
68
  * Update: Add $email default to prevent some fatal errors with plugins using non standard email templates.