Skip to content

Releases: scottyzen/woonuxt-settings

Ceil maxPrice value

18 Apr 20:48
be4acad
Compare
Choose a tag to compare

Ceil maxPrice value

maxPrice is supposed to be int, so always ceil the value #12 - Thanks @svenrudolph

Change to setup_intents

27 Mar 22:50
Compare
Choose a tag to compare

Change to setup_intents.

Add stripePaymentIntent for 3d secure.

19 Mar 19:55
Compare
Choose a tag to compare

This update is in prep for the next rollout of WooNuxt which is able to handle Stripe 3d secure payments.

Minor maintenance update

30 Jan 21:26
Compare
Choose a tag to compare
  • Bump plugin to 1.0.52
  • Update plugin version and tested version

Enhanced wooNuxtSEO to be more flexable.

16 Jan 23:04
Compare
Choose a tag to compare

This update will make adding social media providers easier and more flexible.

# The new schema will look like this
query getWooNuxtSettings {
  woonuxtSettings {
    wooNuxtSEO {
      provider
      url
      handle
    }
  }
}

And an example if what the response will look like

{
  "data": {
    "woonuxtSettings": {
      "wooNuxtSEO": [
        {
          "provider": "twitter",
          "url": "https://twitter.com/scottyzen",
          "handle": "scottyzen"
        },
        {
          "provider": "github",
          "url": "https://github.com/scottyzen",
          "handle": "scottyzen"
        }
      ]
    }
  }
}

Note: This update will will not be available until WooNuxt v3.3.6 is released. It is currently being tested and will be released soon.

Bug fixes

13 Jan 21:23
Compare
Choose a tag to compare
1.0.50

Update plugin version and download URL in plugin.json

Update Social meta schema

13 Jan 20:21
Compare
Choose a tag to compare
1.0.49

Update plugin version and download URL

Add SEO settings

10 Jan 21:25
Compare
Choose a tag to compare

Add fields to the schema to help with upcoming SEO features.

query getWooNuxtSettings {
  woonuxtSettings {
    frontEndUrl
    wooNuxtSEO {
      facebook
      twitter
      youtube
      pinterest
      linkedin
      instagram
    }
  }
}```

Setup helpers

06 Dec 22:47
Compare
Choose a tag to compare
1.0.47

Setup helpers

Increase the max query amount

05 Nov 21:06
Compare
Choose a tag to compare

Increase the max query amount if there are more than 100 products.

For now this is the best way of fixing the issue with rendering over 100 products. If you need to reduce the load on the server you can adjust the following in options in the nuxt.config.ts file.

  // Depending on your servers capabilities, you may need to adjust the following settings.
  // It will affect the build time but also increase the reliability of the build process.
  // If you have a server with a lot of memory and CPU, you can remove the following settings.
  nitro: {
    prerender: {
      concurrency: 10, // How many pages to prerender at once
      interval: 1000, // How long to wait between prerendering pages
      failOnError: false, // This stops the build from failing but the page will not be statically generated
    },
  },