Tell us what you are trying to do?
I have two taxonomies - A and B
I am attempting to show a term field I assigned to taxonomy B (field name= image, field slug= image, field type = image).
Basically - I am in a taxonomy archive for Taxonomy A. In that taxonomy archive, I would like to show all the images for Taxonomy B for each post.
I tried this:
[types field="sub-topic" termmeta='image' alt='%%ALT%%' title='%%TITLE%%' size='thumbnail' align='center' resize='proportional'][/types]
I also tried
[wpv-post-taxonomy type="resource-format" separator=", " format="name" show="name" order="asc"]
but there's nothing in that shortcode to allow for showing images.
I've also tried setting up a separate field just for Taxonomy B (field name= st-image, field slug= st-image, field type = st-image) and tried this:
[types field="st-image" termmeta='st-image' alt='%%ALT%%' title='%%TITLE%%' size='thumbnail' align='center' resize='proportional'][/types]
[types termmeta='st-image' alt='%%ALT%%' title='%%TITLE%%' size='thumbnail' align='center' resize='proportional'][/types]
nothing is working to show in the Taxonomy A archive to allow me to show taxonomy B's custom field.
Thank you
To show taxonomy term meta please insert the Shortcodes with the "Fields and Views" GUI.
When trying to get data of very specific elements (and not what is queried in the Loop) you will need to specify this in the GUI/Shortcode.
This results in something like:
[types termmeta='images' title='%%TITLE%%' alt='%%ALT%%' size='full' term_id='3'][/types]
Clearly, you need to tell the code, to get the data from Item xy, as you do not query those items in the Archive/View (you query Taxonomy A, but want data of B).
Also remember that a Taxonomy archive does not return terms, but POSTS attached to those terms.
So, if there are no posts, nothing at all would be output in the Archive's loop even if calling a very specific item.
If there are 3 posts, it will output the same (of the other taxonomy) data 3 times.