I’m trying to customize the table view of a files section. My file blueprint has a text field called title
, which I’m able to display in a column called “Title”. However, Kirby shows the filename in its own column also called “Title”. If I want to change this column to “Filename”, how would I do that? Additionally, how do I disable the thumbnail icon here? Adding image: false
under columns
does not have any change.
Here’s my section blueprint for the above screenshot:
files:
type: files
layout: table
columns:
title:
label: Title
size:
label: Size
value: "{{ file.niceSize }}"
width: 1/6