Hi Bricks team,
I’m trying to display a taxonomy term image inside a Meta Box Group query loop.
Environment
-
Bricks: 2.3.9
-
Meta Box: 5.13.1
-
Meta Box AIO: 3.9.0
Data structure
Insight Post
Trusted References (MB Group)
├── trusted_organization (Taxonomy Advanced)
├── reference_title
└── reference_url
The Trusted Organization taxonomy has a custom Meta Box field:
organization_logo
(Field type: Single Image)
Current status
The organization name renders correctly using:
{mb_insight_trusted_references_trusted_organization}
For example, it correctly displays:
World Health Organization (WHO)
However, I cannot access the taxonomy term’s custom image field (organization_logo) from inside the same MB Group query loop.
What I’ve tried
-
Storing the logo inside the group (works, but duplicates data)
-
Moving the logo to taxonomy term meta (preferred architecture)
-
Using the taxonomy field dynamic tag
-
Creating custom dynamic tags with PHP
-
Using
rwmb_meta()withobject_type => term
The organization name works correctly, but I cannot retrieve the logo for the selected taxonomy term.
Goal
My goal is to normalize my data.
Instead of storing the organization logo inside every Trusted Reference, I moved the logo to the Trusted Organization taxonomy.
Now I need to display that taxonomy logo while looping through the Meta Box Group in Bricks.
The organization name already displays correctly using:
{mb_insight_trusted_references_trusted_organization}
Only the taxonomy image (organization_logo) is missing.
Question
Is there a native Bricks dynamic tag or documented API to access taxonomy term meta from a Taxonomy Advanced field inside a Meta Box Group query loop?
If custom code is required, what is the recommended Bricks hook or API for accessing the current Meta Box Group item?
Has anyone implemented this successfully, or is there a recommended Bricks approach for accessing taxonomy term meta from within an MB Group query loop?
Thank you!


