Custom values / icons for toggle field in table layout of a structure field

I would like to display a custom icon or text for a toggle field in a structure field (like a checkmark for ON or cross for OFF) is that possible?

Currently the values for a toggle field are “true” and “-” in the table view of the structure
(It would be fine if the displayed text would match the custom text value of the toggle field…)

      jobs:
        label: Jobs
        type: structure
        fields:
          enabled:
            label: Visible
            type: toggle
            default: true
          title:
            label: Job
            type: text
            required: true

Check out this plugin: https://github.com/sylvainjule/kirby-previews

1 Like

thanks, that works!!!