Remove duplicate tooltip text
This commit is contained in:
parent
b600b00091
commit
7484bd9199
|
@ -184,7 +184,7 @@ if ( ! class_exists( 'WC_Email_Cancelled_Order', false ) ) :
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
|
@ -221,7 +221,7 @@ if ( ! class_exists( 'WC_Email_Customer_Invoice', false ) ) :
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
|
@ -277,7 +277,7 @@ if ( ! class_exists( 'WC_Email_Customer_Refunded_Order', false ) ) :
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
|
@ -182,7 +182,7 @@ if ( ! class_exists( 'WC_Email_Failed_Order', false ) ) :
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
|
@ -189,7 +189,7 @@ if ( ! class_exists( 'WC_Email_New_Order' ) ) :
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
|
@ -674,7 +674,7 @@ class WC_Email extends WC_Settings_API {
|
||||||
),
|
),
|
||||||
'additional_content' => array(
|
'additional_content' => array(
|
||||||
'title' => __( 'Additional content', 'woocommerce' ),
|
'title' => __( 'Additional content', 'woocommerce' ),
|
||||||
'description' => __( 'Text to appear to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
'description' => __( 'Text to appear below the main email content.', 'woocommerce' ) . ' ' . $placeholder_text,
|
||||||
'css' => 'width:400px; height: 75px;',
|
'css' => 'width:400px; height: 75px;',
|
||||||
'placeholder' => __( 'N/A', 'woocommerce' ),
|
'placeholder' => __( 'N/A', 'woocommerce' ),
|
||||||
'type' => 'textarea',
|
'type' => 'textarea',
|
||||||
|
|
Loading…
Reference in New Issue