# Custom Fields Display ## Overview To display a custom field or a custom field group inside the layouts, use this schema. ## ITEM VIEW #### Display single custom field: ```php item->fields->getOne(ID)->show();?> ```
Where "5" is the ID of the custom field. ID's can be found under custom fields list, the last column. #### Display a group: ```php item->fields->showGroup("item")?> ```
Where "second" is the name of the group
itemviews/item
itemsviews/items
tabsviews/itemunder the custom tabs
featuresviews/itemunder features tab
#### Display all: ```php fields->show()?> ```