Update html-product-data-general.php

Changed external/affiliate product URL field's placeholder from http:// to https:// to reflect web preference for https
This commit is contained in:
Hannah Swain 2018-11-12 13:56:00 +01:00 committed by GitHub
parent f39b006264
commit 1e142836b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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' ),
)
);