From 781f0670580f9418de6617eb9e1558ef24b61573 Mon Sep 17 00:00:00 2001 From: OlfatProgressus Date: Fri, 20 Feb 2026 09:45:05 +0200 Subject: [PATCH 1/2] Display cancellation notice for S&R product --- src/Shipping_Method/Settings.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Shipping_Method/Settings.php b/src/Shipping_Method/Settings.php index 55e3dba3..4ee02ae1 100644 --- a/src/Shipping_Method/Settings.php +++ b/src/Shipping_Method/Settings.php @@ -164,12 +164,13 @@ public function get_setting_fields() { 'title' => esc_html__( 'Standard return option', 'postnl-for-woocommerce' ), 'type' => 'select', 'description' => esc_html__( '- None: return labels are not automatically created', 'postnl-for-woocommerce' ) . '
' . - esc_html__( '- Shipment & Return: the label of the outward shipment can also be used for the return shipment.', 'postnl-for-woocommerce' ) . '
' . + esc_html__( '- Shipment & Return: the label of the outward shipment can also be used for the return shipment.', 'postnl-for-woocommerce' ) . + esc_html__( ' ( Note: Shipment & Return Label will be discontinued on July 1. )', 'postnl-for-woocommerce' ) . '
' . esc_html__( '- Label in the box: a separate return label is created at the same time as the label for the outward shipment and can be included in the box.', 'postnl-for-woocommerce' ), 'options' => array( 'none' => esc_html__( 'None', 'postnl-for-woocommerce' ), - 'shipping_return' => esc_html__( 'Shipping & Return Label', 'postnl-for-woocommerce' ), + 'shipping_return' => esc_html__( 'Shipping & Return Label ( Note: Shipment & Return Label will be discontinued on July 1. )', 'postnl-for-woocommerce' ), 'in_box' => esc_html__( 'Label in the box', 'postnl-for-woocommerce' ), ), 'for_country' => array( 'NL' ), From 744445aa7e5d34dde10c2b2aea7305b9c73ab734 Mon Sep 17 00:00:00 2001 From: OlfatProgressus Date: Fri, 20 Feb 2026 11:22:12 +0200 Subject: [PATCH 2/2] update label name --- src/Shipping_Method/Settings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Shipping_Method/Settings.php b/src/Shipping_Method/Settings.php index 4ee02ae1..c65cfb92 100644 --- a/src/Shipping_Method/Settings.php +++ b/src/Shipping_Method/Settings.php @@ -170,7 +170,7 @@ public function get_setting_fields() { 'options' => array( 'none' => esc_html__( 'None', 'postnl-for-woocommerce' ), - 'shipping_return' => esc_html__( 'Shipping & Return Label ( Note: Shipment & Return Label will be discontinued on July 1. )', 'postnl-for-woocommerce' ), + 'shipping_return' => esc_html__( 'Shipment & Return Label ( Note: Shipment & Return Label will be discontinued on July 1. )', 'postnl-for-woocommerce' ), 'in_box' => esc_html__( 'Label in the box', 'postnl-for-woocommerce' ), ), 'for_country' => array( 'NL' ),