Thanks for your explanation. I made a quick video to help illustrate and align us with what I mean when I'm trying to figure out what the syntax is to pull back Term Metas from custom taxonomies, and custom fields from linked CPTs.
hidden link
Mainly, the questions are:
1.) What are some real-life example syntaxes of pulling back custom fields from _associated_ CTs and _linked_ CPTs (not just the fields from the _same_ CPT, which is what I believe the below syntax is):
2.) When there is a Many-to-Many relationship, who is the parent?
3.) How is the parent value displayed if/when we want to include that parent slug?
4.) What are some of the advantages or use cases of pulling back the parent slug?
Re: UABB add-on plugin from the Astra team for BB - Sure, can certainly provide you with a credential to our site for you to take a look. If there are any issues, I'm happy to reach out to the Astra team and coordinate any improvements.
1) So if you're on the child post then you can pull the parent post type field information.
This is the format that is needed.
[types field='field-name' id='$parent_slug']
2) The Parent would be in reality the interemdiary CPT but our this is just for internal knowledge.
3) The parent value is displayed like this [types field='field-name' id='$parent_slug'] however from the links above you can display the parent information with the views plugin as well.
4) This one i'm not sure what you mean here as passing the parent slug into the types shortcode is just allowing it to reference another field. Similarly you can just pass an ID number into the id attribute to display the field information from another post.