Questions tagged [netlify-cms]

Ask questions about the Netlify CMS open source project. netlifycms.org

277 questions
1
vote
2 answers

Gatsby.js - Netlify CMS - Netlify Rebuilding

I am looking into making a project using Gatsby.js and Netlify CMS and I have seen the tutorials and it looks pretty slick, but I am wondering if there is a way to make development less cumbersome. If I understand correctly, while developing in…
blubberbo
  • 4,441
  • 4
  • 23
  • 36
1
vote
2 answers

Netifly Fails To Load Ressource After Deployment

I've deployed a React website on Netifly this morning from a github repository. I then made a few changes, pushed them to github, and triggered a new deployment on Netifly. Now the website is a blank page. In the console, I have the message:…
DoneDeal
  • 149
  • 2
  • 3
  • 11
1
vote
1 answer

netlify cms gatsby getting "must have identifier_field set" for collection

Hi I am working from the gatsby-starter-netlify-cms and have setup a secondary blog called "Bios" I used the blog as a template and have it displaying from the .md file correctly, the problem is that when I try to update or add a new bio the content…
1
vote
1 answer

Adding discus commenting system and customize themes on netlify cms

Recently I buy a domain and hosting from netlify , I added netlify cms with default themes minima , now I want to add discus comment system . Here is the example of short code for enabling discus comment system disqus: shortname:…
Momin
  • 3,200
  • 3
  • 30
  • 48
1
vote
1 answer

Gatsby / Netlify Styles wont show?

When I'm using the Gatsby starter https://www.gatsbyjs.org/starters/gatsby-starter-business Locally I see all the styles fine and everything works. When i deploy to Netlify I don't get any css to show up! I can't seem to figure out why? Here is the…
1
vote
1 answer

netlify gatsby - markdownRemark on a list widget

I've added a new page to the config.yml file from the gatsby netlify started repo: - name: "pages" label: "Pages" files: - file: "src/pages/CV/index.md" label: "CV" name: "CV" fields: - { …
Miha Šušteršič
  • 9,742
  • 25
  • 92
  • 163
1
vote
1 answer

Gatsby CMS - Failed to load settings from /.netlify/identity

I've installed gastby 2 on an ubuntu 16.04 box gatsby new netlifycms2 https://github.com/netlify-templates/gatsby-starter-netlify-cms without error. However when I visit /admin and click login with netlify I get the message Failed to load settings…
conteh
  • 1,544
  • 1
  • 17
  • 39
1
vote
0 answers

Gatsby, how to do "join" with graphql?

I use gatsby and netlify-cms. My schema: collections: - name: "tags" label: "Tags" folder: "src/data/tags" create: true slug: "{{slug}}" fields: - {label: "Id", name: "title", widget: "string"} - {label:…
deemaagog
  • 81
  • 1
  • 5
1
vote
1 answer

How can I fix the 'sha' undefined error for my Netlify site?

So I've built a Jekyll site with the theme [Moon](Failed to persist entry: TypeError: Cannot read property 'sha' of undefined) and I've uploaded it to my GitHub repository. Then I want to add Netlify's admin panel to my site so I follow this guide…
Andrew.Wolphoe
  • 420
  • 5
  • 18
1
vote
1 answer

How to use the container Hugo version with One Click Netlify CMS example

In the Netlify CMS community chat, the question keeps coming up how to manage the Hugo version without a bin folder and executable. The one-click-hugo-cms example is a deploy to generate a Hugo static site and use Netlify CMS to be able to add posts…
talves
  • 13,993
  • 5
  • 40
  • 63
1
vote
1 answer

What is my folder path in Netlify CMS using Jekyll

In the Jekyll config, source is set to source: ./jekyll A collection that lives in that source ./jekyll/_work Netlify CMS Config inside admin folder ./jekyll/admin/config.yml The path to the folder where the documents are stored Collection path…
talves
  • 13,993
  • 5
  • 40
  • 63
1
vote
1 answer

NetlifyCMS - Collection content not found

I'm using https://github.com/netlify-templates/kaldi-hugo-cms-template I created a new collection ("pages") at config.yml and .md files are located at site/content. Front-end of the site is looking fine at localhost and at Netlify. At…
0
votes
0 answers

Eleventy rendering [object Object] when dealing with frontmatter

I am using netlify cms and eleventy to build a blog. Here's how my markdown looks like: --- title: How should your business website look like ? Find the perfect agency for it. description: So, you've decided to take your business online and create a…
Saswat
  • 180
  • 4
  • 13
0
votes
1 answer

linking media in astro

I have a website built with Astro and use Netlify CMS for content management. The media upload location seems to be different from where I want to link. I had a look at the documentation and the config seems to be correct but the path is being…
Jan Peeter
  • 347
  • 3
  • 12
0
votes
0 answers

NextJS + Netlify breaks styles after removing serversideprops

I have a NextJS project which I'm hosting on Netlify because I'm using netlifycms. Index page looks like this: //import ReactMarkdown from 'react-markdown' //import fs from 'fs' //import matter from 'gray-matter' import ContactForm from…