diff --git a/plugin.json b/plugin.json index d1de709..46f266c 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "woonuxt Settings", - "version": "1.0.55", + "version": "1.0.56", "download_url": "https://github.com/scottyzen/woonuxt-settings/releases/download/1.0.55/woonuxt-settings.zip", "homepage": "https://woonuxt.com/", @@ -13,7 +13,7 @@ "sections": { "description": "WooNuxt is unmatched when it comes to performance and scalability. Reap the benefits of having a online store that out performs all of your competitors.", "installation": "(Recommended) Installation instructions.", - "changelog": "

1.0.55

Ceil maxPrice value.

1.0.54

Change to setup_intents.

1.0.53

Add stripePaymentIntent for 3d secure.

1.0.52

Bump version.

1.0.51

Inhance Social media fileds and schema.

<

1.0.50

Add SEO settings

1.0.49

Add functionality to increase max query amount if there are more than 100 products

1.0.45

Fix error when WooCommerce is disabled or not installed

" + "changelog": "

1.0.56

Add currencySymbol. Fix Vercel url

1.0.55

Ceil maxPrice value.

1.0.54

Change to setup_intents.

1.0.53

Add stripePaymentIntent for 3d secure.

1.0.52

Bump version.

1.0.51

Inhance Social media fileds and schema.

1.0.50

Add SEO settings

1.0.49

Add functionality to increase max query amount if there are more than 100 products

1.0.45

Fix error when WooCommerce is disabled or not installed

" }, "icons": { diff --git a/woonuxt.php b/woonuxt.php index 2e5364b..c075bde 100644 --- a/woonuxt.php +++ b/woonuxt.php @@ -5,7 +5,7 @@ Author: Scott Kennedy Author URI: http://scottyzen.com Plugin URI: https://github.com/scottyzen/woonuxt-settings -Version: 1.0.55 +Version: 1.0.56 Text Domain: woonuxt GitHub Plugin URI: scottyzen/woonuxt-settings GitHub Plugin URI: https://github.com/scottyzen/woonuxt-settings @@ -16,10 +16,10 @@ exit(); } -define('WOONUXT_SETTINGS_VERSION', '1.0.55'); -define('MY_WOOCOMMERCE_VERSION', '8.5.2'); -define('WP_GRAPHQL_VERSION', '1.20.0'); -define('WOO_GRAPHQL_VERSION', '0.19.0'); +define('WOONUXT_SETTINGS_VERSION', '1.0.56'); +define('MY_WOOCOMMERCE_VERSION', '9.1.2'); +define('WP_GRAPHQL_VERSION', '1.27.2'); +define('WOO_GRAPHQL_VERSION', '0.20.0'); define('WP_GRAPHQL_CORS_VERSION', '2.1'); // Define Globals @@ -385,7 +385,8 @@ function deployButtonCallback() Deploy to Netlify - + @@ -478,16 +479,16 @@ function global_setting_callback() $value): ?> - - - - - - - - Delete - - + + + + + + + + Delete + + @@ -584,40 +585,40 @@ function global_setting_callback() $value): ?> - - - - - - + + + - - - /> - - - /> - - - /> - - -
- Delete | - | - -
- - - + + + + /> + + + /> + + + /> + + +
+ Delete | + | + +
+ + + @@ -691,6 +692,7 @@ function global_setting_callback() 'publicIntrospectionEnabled' => ['type' => 'String', 'default' => 'off'], 'stripeSettings' => ['type' => 'woonuxtOptionsStripeSettings'], 'currencyCode' => ['type' => 'String'], + 'currencySymbol' => ['type' => 'String'], 'wooCommerceSettingsVersion' => ['type' => 'String'], 'wooNuxtSEO' => ['type' => ['list_of' => 'wooNuxtSocialItems']], ], @@ -728,7 +730,8 @@ function global_setting_callback() if (!function_exists('get_woocommerce_currency') && function_exists('WC')) { require_once WC()->plugin_path() . '/includes/wc-core-functions.php'; } - $options['currencyCode'] = get_woocommerce_currency(); + $options['currencyCode'] = get_woocommerce_currency(); // EUR + $options['currencySymbol'] = html_entity_decode(get_woocommerce_currency_symbol()); // € $options['domain'] = $_SERVER['HTTP_HOST']; $options['wooCommerceSettingsVersion'] = WOONUXT_SETTINGS_VERSION;