@kyKaq can you post in your html and screenshot the field section in your module? I’m thinking you might not have your second repeater nested in your first repeater properly. There’s no issue with what you are trying to do. It should work.
Hi, @dbeau79 .
I had successfully added the repeater. However, I am now facing the problem of the setting.
However, a new problem is faced. I wanted to enable it to able to customize each of the repeaters. but, the new problem I face is I am unable to edit through the first repeater. And when I edit in the second repeater It will affect the first repeater as well. How can I do so that I can customize each of the repeaters?
This is my code:
Can you also provide us with a screenshot of the fields you have on the right side?
Looks like you might be missing an {% endfor %} and a closing </div>
Thank you for the screenshots, I see that you have multiple groups within the initial repeater group. I think you need all those sub groups with the card settings to group inside the card_item group maybe another field called card_settings. Because you want those card settings to only affect the current card item but right now it’s affecting all the cards the same way?
I found the solution myself, the {{ name }} will return the same id every time. Then I change to {{ loop.index }}, it gives me a different unique id every time.
But I also want to thanks for your help.