Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repeater in repeater #89

Open
JohannesDeml opened this issue Jul 4, 2019 · 2 comments
Open

Repeater in repeater #89

JohannesDeml opened this issue Jul 4, 2019 · 2 comments
Labels
enhancement New feature or request

Comments

@JohannesDeml
Copy link

JohannesDeml commented Jul 4, 2019

From what I can tell it is not possible to add a repeater in a repeater. My usecase for that would be a simple description list. A description list can have multiple description terms which again can have multiple description details. The frontend html would look like this:

 <div class="description-container">
   <dl>
    {{#each entry}}
    <dt>{{description_term}}</dt>
    {{#each detail_entry}}
    <dd>{{description_details}}</dd>
    {{/each}}
    {{/each}}
  </dl>
</div>

Is there any reason this is not supported? And how hard would it be to implement? I haven't done any wordpress plugin development so far, but I do know my way around php. :)

@nk-o nk-o added the enhancement New feature or request label Aug 12, 2019
@nk-o
Copy link
Collaborator

nk-o commented Aug 12, 2019

@JohannesDeml
Copy link
Author

Hi @nk-o

Thanks for the response and pointing me in the direction I have to look at. Hopefully I will find the time to solve the problem and create a PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants