This commit is contained in:
Mike Jolley 2018-04-11 16:45:41 +01:00
parent cdd5b25bd8
commit 592605f071
2 changed files with 2 additions and 2 deletions

View File

@ -796,7 +796,7 @@ class WC_Shop_Customizer {
'settings' => 'woocommerce_checkout_terms_and_conditions_text',
'type' => 'textarea',
'input_attrs' => array(
'placeholder' => __( 'Your personal data will be used to process your order and to support your experience throughout this website. Please take a look at our [privacy_policy] for more information on how we handle your personal data.', 'woocommerce' ),
'placeholder' => __( 'Your personal data will be used to process your order and to support your experience throughout this website. Please take a look at our [privacy_policy] for more information on how we handle this data.', 'woocommerce' ),
),
)
);

View File

@ -578,7 +578,7 @@ function woocommerce_output_terms_and_conditions_text() {
'[privacy_policy]' => $privacy_link,
);
$default_text = __( 'Your personal data will be used to process your order and to support your experience throughout this website. Please take a look at our [privacy_policy] for more information on how we handle your personal data.', 'woocommerce' );
$default_text = __( 'Your personal data will be used to process your order and to support your experience throughout this website. Please take a look at our [privacy_policy] for more information on how we handle this data.', 'woocommerce' );
$text = get_option( 'woocommerce_checkout_terms_and_conditions_checkbox_text' );
if ( ! $text && $privacy_link ) {