WC_Email_Customer_Note::get_default_additional_content
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 Email Customer Note::get default additional content WC 10.6.2
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' );
}