Tell us what you are trying to do?
============================
I'm using the Elementor Theme Builder with Toolset.
I've created to CPT's: 'Conversation' and 'Person' (plural is 'People').
I've created a many-to-many relationship between the CPT's.
I have named the relationship "conversation partners".
I've used the Elementor Theme Builder to create a single for Conversations.
I've created a view to output People associated with the current Conversation. In the elementor template I've created for the Conversation single, I have used the View widget to output the results of the view.
The view is defined thus:
[wpv-layout-start]
[wpv-items-found]
<!-- wpv-loop-start -->
<ul class="wpv-loop js-wpv-loop">
<wpv-loop>
<li>
[types field="name"][/types]
[types field="person-url"][/types]
[wpv-post-title]
</li>
</wpv-loop>
</ul>
<!-- 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]
Result
======
Nothing is output by the View in the Conversation single.
I've tried using a filter on the view.
The view setting looks like this:
"Select posts in a Conversation Partners relationship that are related to the Post where this View is shown."
Is there any documentation that you are following?
===========================================
https://toolset.com/documentation/post-relationships/how-to-display-related-posts-with-toolset/#displaying-many-related-items
Is there a similar example that we can see?
=====================================
No.
What is the link to your site?
========================
I'm building the site locally.
Hi, your Query Filter setup seems okay, so I'm curious to know if something else is going on. Can you try adding a bit more debugging information to the View's Loop Editor? Here's the code I would like to test:
[wpv-layout-start]
[wpv-items-found]
<h2>At least one item was found.</h2>
<!-- wpv-loop-start -->
<ul class="wpv-loop js-wpv-loop">
<wpv-loop>
<li>
Name field: [types field="name"][/types]<br />
Person URL field: [types field="person-url"][/types]<br />
Title: [wpv-post-title]<br />
ID: [wpv-post-id]<br />
</li>
</wpv-loop>
</ul>
<!-- 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]
On the front-end of the site, you should see "No items found" if the current Conversation is not related to any People posts. If it IS related, you should at least see some debug text appear. Please let me know what you find out.