Commit b0b4bbd397 for woocommerce

commit b0b4bbd397b09ddc6c9c90d3fbcc94a5b56f0cf7
Author: Amit Raj <77401999+amitraj2203@users.noreply.github.com>
Date:   Fri Feb 6 02:21:05 2026 +0530

    Product Editor: Use `https://` as placeholder for digital product file URL (#63081)

diff --git a/plugins/woocommerce/changelog/update-downloadable-file-url-placeholder-https b/plugins/woocommerce/changelog/update-downloadable-file-url-placeholder-https
new file mode 100644
index 0000000000..2b42b4f32e
--- /dev/null
+++ b/plugins/woocommerce/changelog/update-downloadable-file-url-placeholder-https
@@ -0,0 +1,4 @@
+Significance: patch
+Type: update
+
+Update downloadable file URL placeholder from 'http://' to 'https://'.
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php
index 437af94dc9..fde1ff4ecd 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-download.php
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
 		<input type="hidden" name="_wc_file_hashes[]" value="<?php echo esc_attr( $key ); ?>" />
 	</td>
 	<td class="file_url">
-		<input type="text" class="input_text" placeholder="<?php esc_attr_e( 'http://', 'woocommerce' ); ?>" name="_wc_file_urls[]" value="<?php echo esc_attr( $file['file'] ); ?>" />
+		<input type="text" class="input_text" placeholder="<?php esc_attr_e( 'https://', 'woocommerce' ); ?>" name="_wc_file_urls[]" value="<?php echo esc_attr( $file['file'] ); ?>" />
 		<?php if ( $disabled_download ) : ?>
 			<span class="disabled">*</span>
 		<?php endif; ?>
diff --git a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php
index f8eba6dd29..730c5d80dd 100644
--- a/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php
+++ b/plugins/woocommerce/includes/admin/meta-boxes/views/html-product-variation-download.php
@@ -20,7 +20,7 @@ if ( ! defined( 'ABSPATH' ) ) {
 		<input type="hidden" name="_wc_variation_file_hashes[<?php echo esc_attr( $variation_id ); ?>][]" value="<?php echo esc_attr( $key ); ?>" />
 	</td>
 	<td class="file_url">
-		<input type="text" class="input_text" placeholder="<?php esc_attr_e( 'http://', 'woocommerce' ); ?>" name="_wc_variation_file_urls[<?php echo esc_attr( $variation_id ); ?>][]" value="<?php echo esc_attr( $file['file'] ); ?>" />
+		<input type="text" class="input_text" placeholder="<?php esc_attr_e( 'https://', 'woocommerce' ); ?>" name="_wc_variation_file_urls[<?php echo esc_attr( $variation_id ); ?>][]" value="<?php echo esc_attr( $file['file'] ); ?>" />
 		<?php if ( $disabled_download ) : ?>
 			<span class="disabled">*</span>
 		<?php endif; ?>
diff --git a/plugins/woocommerce/tests/e2e-pw/tests/product/product-create-simple.spec.js b/plugins/woocommerce/tests/e2e-pw/tests/product/product-create-simple.spec.js
index f7ff6b763c..b25f17067e 100644
--- a/plugins/woocommerce/tests/e2e-pw/tests/product/product-create-simple.spec.js
+++ b/plugins/woocommerce/tests/e2e-pw/tests/product/product-create-simple.spec.js
@@ -242,7 +242,7 @@ for ( const productType of Object.keys( productData ) ) {
 						.getByPlaceholder( 'File name' )
 						.fill( productData[ productType ].fileName );
 					await page
-						.getByPlaceholder( 'http://' )
+						.getByPlaceholder( 'https://' )
 						.fill(
 							`https://example.com/${ productData[ productType ].fileName }`
 						);