Skip to content

Releases: scottyzen/woonuxt-settings

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
    },
  },

Add functionality for plugin check

28 Oct 23:24
Compare
Choose a tag to compare
1.0.45

Add functionality for plugin check

Update required plugin versions

24 Oct 18:32
Compare
Choose a tag to compare
1.0.44

Update plugin versions

Update required plugin versions

03 Sep 22:06
Compare
Choose a tag to compare
1.0.43

Fix error when WooCommerce is dissabled or not installed

Fix error when WooCommerce is disabled or not installed

08 Aug 19:00
Compare
Choose a tag to compare

Fix error when WooCommerce is disabled or not installed

WooCommerce as required plugins #3. Thanks @Micemade.

Bug fixes

07 Jul 20:20
Compare
Choose a tag to compare
1.0.41

Fix bug

Bump Version for testing

30 Jun 11:15
Compare
Choose a tag to compare
1.0.40

Bump version

Testing Update

30 Jun 01:20
Compare
Choose a tag to compare
1.0.38

updtaing strategy