I’m on Kirby 2.3 and trying to get a blueprint field to accept JSON options, as described in the docs. My setup is the same as the docs:
title: Last name letter
pages: true
files: false
fields:
title:
label: Letter
type: text
category:
label: Category
type: checkboxes
default: architecture
options: http://192.168.1.141/dvddb/directorapi/api.json
api.json is:
{
"id": "Design",
"architecture": "Architecture",
"photography": "Photography",
"3d": "3D",
"web": "Web"
}
Yet no checkboxes are displayed when editing the page. Why would that be?