Page 1 of 1

Managing fields

Posted: 2013-04-03 20:49:39
by Kalambata
There are a few original fields that I don't use at all. On the other and I need to use new fields. I know how to add new fields.
Is it possible to manage original fileds (add, modify or delete them?).
TY

Posted: 2013-04-03 21:06:42
by antp
You can't change the original files, but you can add custom fields. I think the procedure for creating & managing these was described in the help file (that was done by soulsnale/Mickael, not by me)

Posted: 2013-04-03 21:10:26
by soulsnake
Hi,
Is it possible to manage original fields (add, modify or delete them?).
No, you can not manage original fields, sorry.
But you can rename them using translation file if you really want to use them for other purposes ;).

Soulsnake.

Posted: 2013-04-04 16:41:18
by Kalambata
soulsnake wrote:Hi,
Is it possible to manage original fields (add, modify or delete them?).
No, you can not manage original fields, sorry.
But you can rename them using translation file if you really want to use them for other purposes ;).

Soulsnake.
Thank You for your answer.

I added 4 new fields and called them ACT1, ACT2, ACT3 and ACT4
In HTML template I used $$ITEM_ACT1, $$ITEM_ACT2, $$ITEM_ACT3 and $$ITEM_ACT4 but those items are not shown.

$$ITEM_YEAR, $$ITEM_DIRECTOR and all the original fields are O.K.
What did I do wrong?

Posted: 2013-04-04 17:38:26
by soulsnake
Hi,
I added 4 new fields and called them ACT1, ACT2, ACT3 and ACT4
In HTML template I used $$ITEM_ACT1, $$ITEM_ACT2, $$ITEM_ACT3 and $$ITEM_ACT4 but those items are not shown.

$$ITEM_YEAR, $$ITEM_DIRECTOR and all the original fields are O.K.
What did I do wrong?
This is explained in help file (F1 > Export to HTML) :D :

Code: Select all

$$ITEM_CF_ + custom field TAG in upper case = Custom field value
$$LABEL_CF_ + custom field TAG in upper case = Label of custom field 
So for you, it is : $$ITEM_CF_ACT1, $$ITEM_CF_ACT2, $$ITEM_CF_ACT3 and $$ITEM_CF_ACT4

Also, you can use HTML Editor in AMC to edit templates.
You will have menus to include fields in template easier ;).

Soulsnake.

Posted: 2013-04-04 18:19:03
by Kalambata
soulsnake wrote:Hi,
I added 4 new fields and called them ACT1, ACT2, ACT3 and ACT4
In HTML template I used $$ITEM_ACT1, $$ITEM_ACT2, $$ITEM_ACT3 and $$ITEM_ACT4 but those items are not shown.

$$ITEM_YEAR, $$ITEM_DIRECTOR and all the original fields are O.K.
What did I do wrong?
This is explained in help file (F1 > Export to HTML) :D :

Code: Select all

$$ITEM_CF_ + custom field TAG in upper case = Custom field value
$$LABEL_CF_ + custom field TAG in upper case = Label of custom field 
So for you, it is : $$ITEM_CF_ACT1, $$ITEM_CF_ACT2, $$ITEM_CF_ACT3 and $$ITEM_CF_ACT4

Also, you can use HTML Editor in AMC to edit templates.
You will have menus to include fields in template easier ;).

Soulsnake.
Thank You