From 1e142836b6921115d6d1bdaa996622a46a934d31 Mon Sep 17 00:00:00 2001 From: Hannah Swain Date: Mon, 12 Nov 2018 13:56:00 +0100 Subject: [PATCH] Update html-product-data-general.php Changed external/affiliate product URL field's placeholder from http:// to https:// to reflect web preference for https --- includes/admin/meta-boxes/views/html-product-data-general.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/meta-boxes/views/html-product-data-general.php b/includes/admin/meta-boxes/views/html-product-data-general.php index 25d586155fe..4d536d27cf1 100644 --- a/includes/admin/meta-boxes/views/html-product-data-general.php +++ b/includes/admin/meta-boxes/views/html-product-data-general.php @@ -12,7 +12,7 @@ if ( ! defined( 'ABSPATH' ) ) { 'id' => '_product_url', 'value' => is_callable( array( $product_object, 'get_product_url' ) ) ? $product_object->get_product_url( 'edit' ) : '', 'label' => __( 'Product URL', 'woocommerce' ), - 'placeholder' => 'http://', + 'placeholder' => 'https://', 'description' => __( 'Enter the external URL to the product.', 'woocommerce' ), ) );