Update Wowchemy Theme

Updating the wowchemy theme/modules to the latest version.

Update the wowchemy theme

  1. Find the file named ‘go.mod’ at he rood folder of your website
  2. Open it.
  3. paste the following code

module digitalstudio-academy

go 1.15

require (
  github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms main
  github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify main
  github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5 main
)
  1. Update the module paths in config/_default/config.yaml to the following if they are not already:
module:
  imports:
    - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify-cms
    - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy-plugin-netlify
    - path: github.com/wowchemy/wowchemy-hugo-themes/modules/wowchemy/v5
Previous