Tell us what you are trying to do?
I am trying to output custom post types in a bootstrap grid. The issue is that I when the view is output, it is producing extra HTML that is skewing the grid.
My loop is fairly simple:
<div class="row">
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<wpv-loop>
[wpv-post-body view_template="Loop item in Sponsors - Platinum" output='raw']
</wpv-loop>
<!-- wpv-loop-end -->
[/wpv-items-found]
[wpv-layout-end]
</div>
I changed [wpv-post-body view_template="Loop item in Sponsors - Platinum" output='raw'] to this [wpv-post-body view_template="Loop item in Sponsors - Platinum" output='raw' suppress_filters='true'] in your view
If suppress_filters=’true’, all third party (non WordPress) filters hooked into the_content filter will be removed, when retrieving the post body. In certain circumstances, plugins using this filter can add duplicated content to the post body – removing the filters can resolve this problem.