WC_Email_Failed_Order::get_default_additional_contentpublicWC 3.7.0

Default content to show below main email content.

Method of the class: WC_Email_Failed_Order{}

No Hooks.

Returns

String.

Usage

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

Changelog

Since 3.7.0 Introduced.

WC_Email_Failed_Order::get_default_additional_content() code WC 9.9.3

public function get_default_additional_content() {
	return $this->email_improvements_enabled
		? __( 'We hope they’ll be back soon! Read more about <a href="https://woocommerce.com/document/managing-orders/">troubleshooting failed payments</a>.', 'woocommerce' )
		: __( 'Hopefully they’ll be back. Read more about <a href="https://woocommerce.com/document/managing-orders/">troubleshooting failed payments</a>.', 'woocommerce' );
}