Tell us what you are trying to do?
There is an extra space between parent items in my view, I just need to know how to remove it.
Here is a screenshot: hidden link
Here is the code I'm using:
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
Presented by:
<wpv-loop>
[wpv-item index=1][wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"]
[wpv-item index=other], [wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"]
</wpv-loop>
<!-- wpv-loop-end -->
[/wpv-items-found]
[wpv-no-items-found]
<strong>[wpml-string context="wpv-views"]No items found[/wpml-string]</strong>
[/wpv-no-items-found]
[wpv-layout-end]
Is there any documentation that you are following?
This question wasn't answered on this topic from a few years ago:
https://toolset.com/forums/topic/views-showing-result-loop-separated-with-commas/#post-1633961
What is the link to your site?
hidden link
Hello,
You can try these:
1) Replace the codes you mentioned above from:
...
<wpv-loop>
[wpv-item index=1][wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"]
[wpv-item index=other], [wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"]
</wpv-loop>
...
To:
...
<wpv-loop>[wpv-item index=1][wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"] [wpv-item index=other], [wpv-post-body view_template="loop-item-in-audio-class-presenters-and-meta"]</wpv-loop>
...
2) Edit content template "loop-item-in-audio-class-presenters-and-meta", and remove all space in it.