Problem:
From first issue, Why the Location is not wokring while the Search by site # is working? Note that this 2 custom fields are in the same custom post type.
From 2nd issue, why it only allows me to add one ancestor? How to add more like from the documentation?
Solution:
Q1) You are using below filter:
Location Address is a string equal to URL_PARAM(wpv-wpcf-location-address)
I suggest you change it to:
Location Address is a string LIKE URL_PARAM(wpv-wpcf-location-address)
Q2) You can setup two post type relationships:
- Many-to-many relationship between post types "Client" and "Consultant"
- One-to-many relationship between post types "Consultant" and "Projects"
Edit each "Consultant" post, related it to other "Client" posts.
Then you will be able to setup the cascade menus according to our document.
Relevant Documentation:
https://toolset.com/documentation/post-relationships/how-to-display-related-posts-with-toolset/how-to-filter-posts-by-their-ancestors/