WC_Email_Customer_Note::get_default_additional_content()publicWC 3.7.0

Default content to show below main email content.

Метод класса: WC_Email_Customer_Note{}

Хуков нет.

Возвращает

Строку.

Использование

$WC_Email_Customer_Note = new WC_Email_Customer_Note();
$WC_Email_Customer_Note->get_default_additional_content();

Список изменений

С версии 3.7.0 Введена.

Код WC_Email_Customer_Note::get_default_additional_content() WC 9.8.1

public function get_default_additional_content() {
	return $this->email_improvements_enabled
		? __( 'Thanks again! If you need any help with your order, please contact us at {store_email}.', 'woocommerce' )
		: __( 'Thanks for reading.', 'woocommerce' );
}