Hello,
I am using the plugin "Alternate tag fields".
When I paste this code in the text field:
<<EditTagLikeList ii-tags-special Tags>>
I get to see tags read from the field: "ii-tags-special" of that tiddler. The tags appear as a tag pill but without a drop down menu. (Wikified?) How can I make the drop down menu appear when I click on it?
Code from the shadow tiddler
$:/plugins/inmysocks/GenericTagFields/template/EditTemplate/OtherTagFieldsEditTemplate
<$list
filter='[prefix[$:/settings/AlternateTagFields/]!hide_in_edit_mode[true]]'
variable=SettingsTiddler
>
<$set
name=FieldName
filter='[<SettingsTiddler>get[fieldname]]'
>
<$set
name=Wikify
filter='[<SettingsTiddler>get[wikify]]'
>
<$set
name=Label
filter='[<SettingsTiddler>get[label]]'
>
<$macrocall
$name=EditTagLikeList
fieldName=<<FieldName>>
label=<<Label>>
wikify=<<Wikify>>
/>
</$set>
</$set>
</$set>
</$list>
How do I adjust the above code? And can I change the code and just save it?
Thank you,