Skip to content

Commit

Permalink
Merge pull request #1465 from Automattic/update/is_woo_express_plan-l…
Browse files Browse the repository at this point in the history
…ogic-to-consider-ecommerce-plan

Entrepreneur Signup Flow: Update `is_woo_express` logic to consider eCommerce plan
  • Loading branch information
yansern authored Apr 29, 2024
2 parents 8b92f0a + 2f86477 commit f993194
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class-wc-calypso-bridge-dotcom-features.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ function wc_calypso_bridge_is_woo_express_performance_plan() {
* @return bool True if the site is on the Woo Express plan.
*/
function wc_calypso_bridge_is_woo_express_plan() {
return wc_calypso_bridge_is_ecommerce_trial_plan() || wc_calypso_bridge_is_woo_express_essential_plan() || wc_calypso_bridge_is_woo_express_performance_plan();
return wc_calypso_bridge_is_ecommerce_plan() || wc_calypso_bridge_is_ecommerce_trial_plan() || wc_calypso_bridge_is_woo_express_essential_plan() || wc_calypso_bridge_is_woo_express_performance_plan();
}
}

Expand Down

0 comments on commit f993194

Please sign in to comment.