Skip to content
This repository has been archived by the owner on Nov 20, 2022. It is now read-only.

A select field for Kirby populated by a structure field.

Notifications You must be signed in to change notification settings

calebgrove/select-a-structure

Repository files navigation

Select-A-Structure

This is a select field for Kirby that pulls it's options from a specified structure field found on any page of the website. Credit to Sonja for the intial version, I just made it a little more awesome and packaged it as a plugin.

Installation

Clone or download this repo, and rename the folder to select-a-structure. Move it into your site/plugins folder (if that folder doesn't exist, create it).

If you are using the Kirby CLI, you can install it using this command:

kirby plugin:install CalebGrove/select-a-structure

Setup

First, create your structure field anywhere on the website and populate it.

Then, put this into your blueprint where you want the select field to appear:

fieldname:
  label: Field Label
  type: selectastructure
  structurepage: staffpage
  structurefield: stafflist
  optionkey: staffname

You'll want to change these required options:

structurepage:
The URI of the page that hosts the structure field. You can use subpages too, like this: page/subpage. The current page can by selected by leaving this blank. To point to the site() page, use /
structurefield:
The name of the structure field found on structurepage.
optionkey:
The name of the field inside the structure used for the options in the select field.

Usage

Use in your templates just like any select field. The data stored by the field exactly matches the text shown in the options.

And you're ready to rock and roll!