I'm exploring Types and for this purpose I try to build a dictionary functionality with wordpress
- I created "Entries" post type which will store the dictionary headwords
- I created "Meanings" (child of Entries) post type as a container post type to store the repeating field table with initially 3 custom fields:
1. Part of speech (radio buttons) – verb, noun, adjective, etc.
2. Definition – multiple lines field
3. Translation – multiple lines field – REPEATING
So far, so good.
When I add a new entry and with a new Meaning table, fill in the values for Part of Speech, Definition and add repeating values in Translation (because each row in the Meaning table represents a unique meaning of the headword but this headword can have different translation equivalents), only one value in Translation is stored.
Why? How to solve this issue?