Hello everyone,
I’m having a really weird issue.
I’m building a marketplace, and in the Database, I created a type “Size”, which contains the field “sizeTitle”.
I also have a type “item” (which contains the products of my marketplace) and a type “category” (which contains the categories of my items).
In the type “item”, I have a field “itemCategory” which is type “category”.
In the type “category”, I have a field “categorySize” which is a type “Size” (the sizes of my products depend on the category they belong to).
In the type “size”, I have a field “sizeTitle” which is type text and give the type of the size (shoe size, textile size, etc.)
I want to display a size’s title on a product : so I created a Text element in a group (which content is item) and its content is :
“Parent group’s item’s itemCategory’s categorySize’s sizeTitle”.
But nothing is showing… I made a test by adding a condition on the text element :
’ When parent group’s item’s itemCategory’s categorySize is empty ==> text : “empty” ’
I have the text “empty” that shows up for some products because the field categorySize in category isn’t complete, but for the others nothing is written… so the categorySize exists but it kind of doesn’t want to display the field sizeTitle … pretty weird
If you have any idea, thanks for your answer !!!