I’m in the process of moving an old v2 multi-lingual (DE and EN) site to v3 and I have the following problem:
There is a news section with news articles. Pretty standard. I had to re-organise the blueprints to handle new image/file data and structure - so far, so good.
When I make a new article, I get the popup to enter article name, I give it a name and push save and it makes a draft but instead of the name, it takes the automatically created URL. Then I click on the title which is not a slug string and edit it again, and then it saves the title as it should.
Here’s what I have in my article blueprint:
title: Article
num: '{{ page.date.toDate("Ymd") }}'
options:
changeTemplate: false
changeStatus: true
changeSlug: true
delete: true
duplicate: true
sections:
modules:
create:
- module.gallery
content:
type: fields
fields:
title:
label: Title
type: title
coverimage:
label: Article Image
type: files
multiple: false
uploads:
template: image
width: 1/4
bigcoverimage:
label: Header Image
type: files
multiple: false
uploads:
template: image
width: 1/4
date:
label: Datum
type: date
default: today
display: DD.MM.YYYY
required: true
width: 1/4
category:
label: Kategorie
type: select
options:
event: Event
news: Aktuelles
width: 1/4
text:
label: Text
type: textarea
Any ides to what the problem may be?