Check to enable automated taxes after Jetpack connection is made. (https://github.com/woocommerce/woocommerce-admin/pull/5210)
This commit is contained in:
parent
2ba064abf4
commit
6db31e351f
|
@ -24,6 +24,14 @@ class OnboardingAutomateTaxes {
|
||||||
'on_onboarding_profile_completed',
|
'on_onboarding_profile_completed',
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
add_action(
|
||||||
|
'jetpack_authorize_ending_authorized',
|
||||||
|
array(
|
||||||
|
__CLASS__,
|
||||||
|
'on_onboarding_profile_completed',
|
||||||
|
)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue