We created two nested views containing each one a list of repeatable fields group and placed the parent view in a content template, but when previewing the post formatted with content template, we see "No items found" even the fields are populated.
this is the code of the loop editors of views:
PARENT
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<ul class="wpv-loop js-wpv-loop">
<wpv-loop>
[wpv-post-body view_template="loop-item-in-varianti-materiali"]<br>
[wpv-view name="varianti-colore-scheda"]
</wpv-loop>
<!-- wpv-loop-end -->
[/wpv-items-found]
[wpv-no-items-found]
[wpml-string context="wpv-views"]No items found[/wpml-string]
[/wpv-no-items-found]
[wpv-layout-end]
CHILD
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<ul class="wpv-loop js-wpv-loop">
<wpv-loop>
[wpv-post-body view_template="loop-item-in-varianti-colore-scheda"]
</wpv-loop>
<!-- wpv-loop-end -->
[/wpv-items-found]
[wpv-no-items-found]
[wpml-string context="wpv-views"]No items found[/wpml-string]
[/wpv-no-items-found]
[wpv-layout-end]
Hello, can you take screenshots of both Views in wp-admin so I can see the Query Filter configurations?
Also, where is the parent View placed on your site?
Add the post title shortcode just before the nested View, like this:
[wpv-post-body view_template="loop-item-in-varianti-materiali"]<br>
[wpv-post-title]<br>
[wpv-view name="varianti-colore-scheda"]
Is the parent post title displayed as expected when you test now?