Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks

Tax::get_content()publicWC 1.0

Content.

Method of the class: Tax{}

No Hooks.

Return

String.

Usage

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

Tax::get_content() code WC 8.6.1

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'
		);
}