Commit b5874fff970 for woocommerce

commit b5874fff970b3fbc6407dbc62d330ca9c65e3b23
Author: Rishabh Gupta <109821717+R1shabh-Gupta@users.noreply.github.com>
Date:   Tue Aug 11 17:28:56 2026 +0530

    Fix Sale price dates help tip rendering below the Cancel link instead of next to its label (#67500)

    Fix help tip position for sale price dates in product editor

    Co-authored-by: Karol Manijak <20098064+kmanijak@users.noreply.github.com>

diff --git a/plugins/woocommerce/changelog/67496-fix-sale-price-dates-help-tip-position b/plugins/woocommerce/changelog/67496-fix-sale-price-dates-help-tip-position
new file mode 100644
index 00000000000..178dddf22ff
--- /dev/null
+++ b/plugins/woocommerce/changelog/67496-fix-sale-price-dates-help-tip-position
@@ -0,0 +1,4 @@
+Significance: patch
+Type: fix
+
+Fix the Sale price dates help tip rendering below the Cancel link instead of next to its label in the product editor.
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php
index 609b4be3530..c2d26140af3 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php
@@ -92,10 +92,10 @@ use Automattic\WooCommerce\Enums\ProductTaxStatus;
 			$date_input_html_pattern = apply_filters( 'woocommerce_date_input_html_pattern', '[0-9]{4}-(0[1-9]|1[012])-(0[1-9]|1[0-9]|2[0-9]|3[01])' );

 			echo '<p class="form-field sale_price_dates_fields">
-					<label for="_sale_price_dates_from">' . esc_html__( 'Sale price dates', 'woocommerce' ) . '</label>
+					<label for="_sale_price_dates_from">' . esc_html__( 'Sale price dates', 'woocommerce' ) . '</label>' . wc_help_tip( __( 'The sale will start at 00:00:00 of "From" date and end at 23:59:59 of "To" date.', 'woocommerce' ) ) . '
 					<input type="text" class="short" name="_sale_price_dates_from" id="_sale_price_dates_from" value="' . esc_attr( $sale_price_dates_from ) . '" placeholder="' . esc_html( _x( 'From&hellip;', 'placeholder', 'woocommerce' ) ) . ' YYYY-MM-DD" maxlength="10" pattern="' . esc_attr( $date_input_html_pattern ) . '" />
 					<input type="text" class="short" name="_sale_price_dates_to" id="_sale_price_dates_to" value="' . esc_attr( $sale_price_dates_to ) . '" placeholder="' . esc_html( _x( 'To&hellip;', 'placeholder', 'woocommerce' ) ) . '  YYYY-MM-DD" maxlength="10" pattern="' . esc_attr( $date_input_html_pattern ) . '" />
-					<a href="#" class="description cancel_sale_schedule">' . esc_html__( 'Cancel', 'woocommerce' ) . '</a>' . wc_help_tip( __( 'The sale will start at 00:00:00 of "From" date and end at 23:59:59 of "To" date.', 'woocommerce' ) ) . '
+					<a href="#" class="description cancel_sale_schedule">' . esc_html__( 'Cancel', 'woocommerce' ) . '</a>
 				</p>';

 			/**