From b42c0cad58ea090501c204c776e720a418e95c1b Mon Sep 17 00:00:00 2001 From: Mitchell van Honk Date: Wed, 16 Oct 2024 20:46:02 +0200 Subject: [PATCH] Update ecwid-shopping-cart.php Fix the function. The return false; was preventing from check on a paid account. Therefor disabling multiple function in the plugin like SSO --- ecwid-shopping-cart.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ecwid-shopping-cart.php b/ecwid-shopping-cart.php index 4680bf4b..61aac112 100644 --- a/ecwid-shopping-cart.php +++ b/ecwid-shopping-cart.php @@ -2988,7 +2988,6 @@ function ecwid_update_store_id( $new_store_id ) { function ecwid_is_paid_account() { - return false; if ( Ecwid_Api_V3::is_available() ) { $api = new Ecwid_Api_V3(); @@ -3082,4 +3081,4 @@ function ecwid_get_shortcode_regex() { // phpcs:enable } -?> \ No newline at end of file +?>