Tell us what you are trying to do?
I'm trying to display taxonomy custom fields right after [wpv-layout-start]. I have created the custom fields for the featured image.
Is there any documentation that you are following?
I checked the shortcode list but couldn't find one that works outside the loop. I managed to use [wpv-archive-title] and [wpv-taxonomy-archive info="description"] to get taxonomy title and description. https://toolset.com/documentation/user-guides/views-shortcodes/#wpv-view
- For example, [wpv-view name="houses" taxid="1"]
- Such that:
==houses os the name of the view
==taxid is a parameter being passed to houses view
- You can use taxid to filter the results in houses view (In houses view settings especially in the Query filter section)
So, let's say that your main view name is "myview"
You need to create another view and name it for example "texview"
In myview, after [wpv-layout-start] , you can add the texview and pass the taxonomy ID (taxid) as a parameter like this [wpv-view name="taxview" taxid="1"]
I'm trying to display a custom field for a specific term on the taxonomy archive page.
My custom post type is Course, taxonomy is Course Category and the specific term is Marketing. I want to display the term's featured image (custom field). How should I do that?