Skip to content

Commit

Permalink
Update is_woo_express logic to consider eCommerce plan
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-ottinger committed Apr 25, 2024
1 parent 8b92f0a commit 2f86477
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 2f86477

Please sign in to comment.