Skip to content

Commit d20b6f8

Browse files
committed
v3.1.1
1 parent 609ca7e commit d20b6f8

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
== Changelog ==
22

3+
= 3.1.1 - 18/09/2024 =
4+
* Fix - Email content - Rich text editor - Resolved horizontal scroll issue in the "Text" mode.
5+
36
= 3.1.0 - 18/09/2024 =
47
* Dev - Email content - Integrated a rich text editor.
58
* Dev - Subject / Email heading / Email content - Added a shortcode selector.

custom-emails-for-woocommerce.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Additional Custom Emails for WooCommerce
44
Plugin URI: https://wpfactory.com/item/custom-emails-for-woocommerce/
55
Description: Add custom emails to WooCommerce.
6-
Version: 3.1.0
6+
Version: 3.1.1
77
Author: WPFactory
88
Author URI: https://wpfactory.com
99
Text Domain: custom-emails-for-woocommerce
@@ -31,7 +31,7 @@
3131
}
3232
}
3333

34-
defined( 'ALG_WC_CUSTOM_EMAILS_VERSION' ) || define( 'ALG_WC_CUSTOM_EMAILS_VERSION', '3.1.0' );
34+
defined( 'ALG_WC_CUSTOM_EMAILS_VERSION' ) || define( 'ALG_WC_CUSTOM_EMAILS_VERSION', '3.1.1' );
3535

3636
defined( 'ALG_WC_CUSTOM_EMAILS_FILE' ) || define( 'ALG_WC_CUSTOM_EMAILS_FILE', __FILE__ );
3737

includes/class-alg-wc-custom-emails-admin.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Custom Emails for WooCommerce - Admin Class
44
*
5-
* @version 3.1.0
5+
* @version 3.1.1
66
* @since 1.0.0
77
*
88
* @author Algoritmika Ltd
@@ -513,12 +513,16 @@ function do_add_admin_action( $email, $option ) {
513513
/**
514514
* Shortcode dropdown style.
515515
*
516-
* @version 3.1.0
516+
* @version 3.1.1
517517
* @since 3.1.0
518518
*/
519519
function shortcode_dropdown_style() {
520520
?>
521521
<style>
522+
.woocommerce table.form-table .alg-wc-editor textarea {
523+
width: 100%;
524+
}
525+
522526
.alg-wc-shortcode-wrap {
523527
position: relative;
524528
}

readme.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: wpcodefactory, algoritmika, anbinder, karzin, omardabbas, kousikmu
33
Tags: woocommerce, emails, email, custom email, custom emails
44
Requires at least: 4.4
55
Tested up to: 6.6
6-
Stable tag: 3.1.0
6+
Stable tag: 3.1.1
77
License: GNU General Public License v3.0
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -146,6 +146,9 @@ Dive in and discover more tools to empower your WooCommerce Store!
146146

147147
== Changelog ==
148148

149+
= 3.1.1 - 18/09/2024 =
150+
* Fix - Email content - Rich text editor - Resolved horizontal scroll issue in the "Text" mode.
151+
149152
= 3.1.0 - 18/09/2024 =
150153
* Dev - Email content - Integrated a rich text editor.
151154
* Dev - Subject / Email heading / Email content - Added a shortcode selector.

0 commit comments

Comments
 (0)