Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_contentpublicWC 1.0

Content.

Method of the class: Tax{}

No Hooks.

Returns

String.

Usage

$Tax = new Tax();
$Tax->get_content();

Tax::get_content() code WC 10.4.3

public function get_content() {
	return self::can_use_automated_taxes()
		? __(
			'Good news! WooCommerce Tax can automate your sales tax calculations for you.',
			'woocommerce'
		)
		: __(
			'Set your store location and configure tax rate settings.',
			'woocommerce'
		);
}