Configuration
<?php
return [
// Would you like Fluidity to check to see if there are updates?
'checkForUpdates' => true,
// By default it will show the field's icon.
// This is a global setting which can be disabled on a
// per-field basis in the advanced config.
'showIcons' => true,
// This is where you organize your fields into groups.
'fields' => [
// You will need the field ID, which you can find when
// viewing the admin.php?/cp/fields page.
1 => [
// Give the group a friendly label
'Group Label' => [
// and finally all the fields you want to display in this group.
'field_short_name',
'another_field,
],
],
],
];
Last updated