Fields above text body in select tiddlers

Generally, when I edit a tiddler, the display shows title, body and fields in that order.

Is it possible that for some tiddlers defined by a filter, say ‘[tag[Contact]]’, the fields are above the text area?

Create a tiddler that displays what you want, tag it with $:/tags/EditTemplate then use the tag pill eg <<tag "$:/tags/EditTemplate">> dropdown to drag and drop the order.

Alternatively you can set a field like list-before or list-after and name the tiddler in the value eg list-after=$:/core/ui/EditTemplate/tags

An example tiddler would be;

<$list filter="[all[current[]tag[Contact]]" variable=nul>
Anything or the existing field editor
{{||$:/core/ui/EditTemplate/fields}}
</$list>

This does not remove the existing fields editor at the bottom but it is best perhaps to leave it there. Otherwise you have to edit a system tiddler $:/core/ui/EditTemplate/fields and you may miss changes when you upgrade your wiki.

But you could wraps its contents with

<$list filter="[all[current]!tag[Contact]]" variable=nul>
contents
</$list>
1 Like

@TW_Tones That was perfect. Thanks.