Hmm it seems to be partially working. I have updated my shortcode to the following
[netsposts filter_by_title_keywords='keyword' include_link_title='true' include_blog='2,4' paginate='false' meta_info='true' titles_only='true' list='100' show_categories='true' taxonomy_type='store' taxonomy='' show_custom_taxonomies='true' show_custom_taxonomy_icon='true']
To clarify I have a new taxonomy called “store” which has 100s of stores and I am not trying to filter by them or add a new one in each post as the list grows over time. I am filtering via the “keyword” and just want to show all posts that have this keyword and their categories/store taxonomy terms.
I can see adding a store term to “taxonomy=” does indeed filter the list but I need to show all stores and in no case does it actually show the store term name on the frontend of the list for me.
I am looking for this HTML output basically:
<div class="netsposts-content blog-4 post-763 category-name custom-taxonomy-storename" style="">
<a href="https://permalink" class="netsposts-posttitle-link">Post Title</a>
<div class="netsposts-categories"><a href="https://cat-permalink" class="">Online</a></div>
<div class="netsposts-custom-taxonomy"><a href="https://store-permalink" class="">Store</a></div>
</div>
Hope that clarifies. Let me know if this is still possible and what I am missing.