Tell us what you are trying to do?
In a direcctory I have a CPT, 'professionista', which is associated to several taxonomies (geographical ones: region etc). This CPT is in a relationship one-to-many with another CPT, 'locations' (cities, where the professional has an office, let's say), which are associated to geographical taxonomies too (url: professionisti/{region}/{province}/{location})
Then I have a view, source 'professionisti', to display all professionals associated to certain taxonomies .
<wpv-loop>
[wpv-post-body view_template="professionisti-list-item"]
<br><hr>
</wpv-loop>
I use a content template built with block editor to display the single listing, where the main content is
<h3>[wpv-post-title]</h3>
<p>Sede/i: [wpv-post-taxonomy type="comune" format="name"]</p>
And I get the name of the professional and the name of the geo taxonomies associated to him. The name of the taxonomies and the name of the CPT locations are the same, so it's not a problem.
Now what I would like to do, instead, is to get a link to the 'location'.
I edited the html in the block editor to create the right url starting from the name of the taxonomy
[wpv-post-taxonomy type="comune" format="name"]
And it worked, but not if the professional has many locations, because wpv-post-taxonomy type="comune" format="name" generates a list of taxonomies, comma separated, but the link would be only one with a non existent last path...
So I tried to create a view, to retrieve locations (and their link) associated to the professional, and then inserted it in the content template, but I cannot get it working ('no items found' for every combination of filter, source and relationship I tried :/). I can get taxonomies, the list of all the locations etc but not the exact locations associated to the professional...
Is there any documentation that you are following?
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/
https://toolset.com/documentation/programmer-reference/views/views-shortcodes/item-attribute/
What is the link to your site?
hidden link