Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks
Tax::can_use_automated_taxes
Check if the store has any enabled gateways.
Метод класса: Tax{}
Хуков нет.
Возвращает
true|false.
Использование
$result = Tax::can_use_automated_taxes();
Код Tax::can_use_automated_taxes() Tax::can use automated taxes WC 10.8.1
public static function can_use_automated_taxes() {
if ( ! class_exists( 'WC_Taxjar' ) ) {
return false;
}
return in_array( WC()->countries->get_base_country(), self::get_automated_support_countries(), true );
}