I added the following liquid code to my product page:
<p class="line-item-property__field">
<label for="name">Name</label><br>
<textarea required class="required" id="name" name="properties[Name]" form="product-form-{{ section.id }}"></textarea>
</p>
<p class="line-item-property__field">
<label for="ort">Ort</label><br>
<textarea required class="required" id="ort" name="properties[Ort] form="product-form-{{ section.id }}"></textarea>
</p>
<p class="line-item-property__field">
<label for="land">Land</label><br>
<textarea required class="required" id="land" name="properties[Land] form="product-form-{{ section.id }}"></textarea>
</p>
<p class="line-item-property__field">
When I put the product to the cart and go to the Cart page, I only see the first line property (name) being displayed. When I look at the code of main-cart-items.liquid it seems that it goes through a list of properties. But it seems that the list of properties that goes from the product page to the cart has essentially only the length of 1.
What do I have to do so that all line item properties are displayed in the cart?