Skip to content

Commit 8641be5

Browse files
committed
v2.9.8
1 parent d533d2f commit 8641be5

6 files changed

+134
-120
lines changed

changelog.txt

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
== Changelog ==
22

3+
= 2.9.8 - 03/05/2024 =
4+
* Dev - Order Options - Require/Exclude products/users - Admin options are loaded only in the backend now.
5+
36
= 2.9.7 - 02/05/2024 =
4-
* Dev - Shortcodes - `[order_details]` - `add_product_links` attribute added.
7+
* Dev - Shortcodes - `[order_details]` - `add_product_links` attribute added (defaults to `no`).
58

69
= 2.9.6 - 29/04/2024 =
710
* Dev - Shortcodes - `[order_customer_order_notes]` shortcode added.

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: 2.9.7
6+
Version: 2.9.8
77
Author: WPFactory
88
Author URI: https://wpfactory.com
99
Text Domain: custom-emails-for-woocommerce
@@ -30,7 +30,7 @@
3030
}
3131
}
3232

33-
defined( 'ALG_WC_CUSTOM_EMAILS_VERSION' ) || define( 'ALG_WC_CUSTOM_EMAILS_VERSION', '2.9.7' );
33+
defined( 'ALG_WC_CUSTOM_EMAILS_VERSION' ) || define( 'ALG_WC_CUSTOM_EMAILS_VERSION', '2.9.8' );
3434

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

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

+2
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,8 @@ function order_billing_address( $atts, $content = '' ) {
700700
*
701701
* @version 2.9.7
702702
* @since 2.9.7
703+
*
704+
* @todo (dev) No changes: add `... || ! ( $name = $item->get_name() ) ...`?
703705
*/
704706
function add_order_details_product_link( $item_name, $item ) {
705707

includes/settings/class-alg-wc-custom-email-settings.php

+8-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Custom Emails for WooCommerce - Email Settings Class
44
*
5-
* @version 2.9.3
5+
* @version 2.9.8
66
* @since 1.0.0
77
*
88
* @author Algoritmika Ltd
@@ -260,7 +260,7 @@ function get_terms( $taxonomy ) {
260260
/**
261261
* get_ajax_options.
262262
*
263-
* @version 1.8.0
263+
* @version 2.9.8
264264
* @since 1.7.1
265265
*
266266
* @see https://github.com/woocommerce/woocommerce/blob/6.3.1/plugins/woocommerce/includes/class-wc-ajax.php#L1569
@@ -276,6 +276,11 @@ function get_ajax_options( $type, $email, $option, $key = false ) {
276276
return $options;
277277
}
278278

279+
// Make sure it's backend
280+
if ( ! is_admin() ) {
281+
return $options;
282+
}
283+
279284
// Current value
280285
$current = $email->get_option( $option, array() );
281286
if ( false !== $key ) {
@@ -414,6 +419,7 @@ function get_order_statuses() {
414419
* @version 2.9.0
415420
* @since 1.0.0
416421
*
422+
* @todo (dev) load this in admin only (see `get_ajax_options()`)?
417423
* @todo (dev) move this function to a separate file/class
418424
* @todo (feature) "Custom triggers"
419425
* @todo (feature) `cc` and `bcc`

0 commit comments

Comments
 (0)