Tell us what you are trying to do?
Im am trying to design a view with the first instanse to the right and the next to the left. I can resolve this by making different views but I cannot find a way to connect them. What I mean is that they sort the same way as a single view.
A different apporach would be if I can make a single view with different styling.
Is there any documentation that you are following?
Cannot find any that fits.
Is there a similar example that we can see?
Not that I know of
What is the link to your site?
hidden link
Hello,
It needs classic editor view, for example, you can try these:
1) Dashboard-> Toolset-> Settings-> General:
in section "Bootstrap loading", enable option: Toolset should load Bootstrap 4
In section "Editing experience", enable option: Show both the legacy and Blocks interface and let me choose which to use for each item I build
2) Dashboard-> Toolset-> Views, add a new view:
- Query posts of your post types
- In section "Loop Editor"
Display the results like this:
...
<wpv-loop wrap="2" pad="true">
[wpv-item index=1]
<div class="row ">
<div class="col-md-6">
[wpv-post-link]
</div>
<div class="col-md-6">
[wpv-post-featured-image]
</div>
</div>
[wpv-item index=other]
<div class="row ">
<div class="col-md-6">
[wpv-post-featured-image]
</div>
<div class="col-md-6">
[wpv-post-link]
</div>
</div>
</wpv-loop>
...
3) Create a page, add a view block, and choose above view(Step 2)
More help:
hidden link