Hi,
I want to output the content of a textarea field, but it only seems to work if I call my field “text”.
This is the setup that works:
text:
label: Inhalt
type: textarea
<?= $page->text()->kirbytext() ?>
But this is what I prefer and it does not work:
content:
label: Inhalt
type: textarea
<?= $page->content()->kirbytext() ?>
This also did not work:
<?= $page->text($page->content())->kirbytext() ?>
I’d appreciate any help, thanks!