Version Description
| December 07, 2022 = * Tested up to WordPress 6.1
Download this release
Release Info
| Developer | davidvongries |
| Plugin | |
| Version | 5.0.5 |
| Comparing to | |
| See all releases | |
Code changes from version 5.0.4 to 5.0.5
- readme.txt +4 -2
- sb_welcome_email_editor.php +2 -2
readme.txt
CHANGED
|
@@ -2,8 +2,8 @@
|
|
| 2 |
Contributors: davidvongries, seanbarton
|
| 3 |
Tags: welcome email, wordpress welcome email, welcome email editor, mail, email, new user email, password reminder, lost password, welcome email attachment, mail attachment, email attachment
|
| 4 |
Requires at least: 4.6
|
| 5 |
-
Tested up to: 6.
|
| 6 |
-
Stable tag: 5.0.
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
|
@@ -55,6 +55,8 @@ Since version 4.3 the password is no longer sent to the user via email and inste
|
|
| 55 |
1. Welcome Email Editor Settings Page
|
| 56 |
|
| 57 |
== Changelog ==
|
|
|
|
|
|
|
| 58 |
= 5.0.4 | May 11, 2022 =
|
| 59 |
* Tweak: Replace [reset_url] with [reset_pass_url] to keep things uniform
|
| 60 |
* Fixed: Some links were not rendered properly in some cases if Mail Content Type was set to HTML
|
| 2 |
Contributors: davidvongries, seanbarton
|
| 3 |
Tags: welcome email, wordpress welcome email, welcome email editor, mail, email, new user email, password reminder, lost password, welcome email attachment, mail attachment, email attachment
|
| 4 |
Requires at least: 4.6
|
| 5 |
+
Tested up to: 6.1
|
| 6 |
+
Stable tag: 5.0.5
|
| 7 |
License: GPLv2 or later
|
| 8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 9 |
|
| 55 |
1. Welcome Email Editor Settings Page
|
| 56 |
|
| 57 |
== Changelog ==
|
| 58 |
+
= 5.0.5 | December 07, 2022 =
|
| 59 |
+
* Tested up to WordPress 6.1
|
| 60 |
= 5.0.4 | May 11, 2022 =
|
| 61 |
* Tweak: Replace [reset_url] with [reset_pass_url] to keep things uniform
|
| 62 |
* Fixed: Some links were not rendered properly in some cases if Mail Content Type was set to HTML
|
sb_welcome_email_editor.php
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
/**
|
| 3 |
* Plugin Name: Welcome Email Editor
|
| 4 |
* Description: Welcome Email Editor allows you to change the default WordPress welcome & reset password emails.
|
| 5 |
-
* Version: 5.0.
|
| 6 |
* Author: David Vongries
|
| 7 |
* Author URI: https://davidvongries.com/
|
| 8 |
* Text Domain: welcome-email-editor
|
|
@@ -15,7 +15,7 @@ defined( 'ABSPATH' ) || die( "Can't access directly" );
|
|
| 15 |
// Plugin constants.
|
| 16 |
define( 'WEED_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
|
| 17 |
define( 'WEED_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
|
| 18 |
-
define( 'WEED_PLUGIN_VERSION', '5.0.
|
| 19 |
define( 'WEED_PLUGIN_NAME', 'Welcome Email Editor' );
|
| 20 |
define( 'WEED_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
| 21 |
|
| 2 |
/**
|
| 3 |
* Plugin Name: Welcome Email Editor
|
| 4 |
* Description: Welcome Email Editor allows you to change the default WordPress welcome & reset password emails.
|
| 5 |
+
* Version: 5.0.5
|
| 6 |
* Author: David Vongries
|
| 7 |
* Author URI: https://davidvongries.com/
|
| 8 |
* Text Domain: welcome-email-editor
|
| 15 |
// Plugin constants.
|
| 16 |
define( 'WEED_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
|
| 17 |
define( 'WEED_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
|
| 18 |
+
define( 'WEED_PLUGIN_VERSION', '5.0.5' );
|
| 19 |
define( 'WEED_PLUGIN_NAME', 'Welcome Email Editor' );
|
| 20 |
define( 'WEED_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
| 21 |
|
