Hello,
I can’t use this plugin, I seem to have done everything correctly, but obviously something must have been wrong.
I see the list of tags, but when I click on a tag, all posts in the blog category appear, not just those with that tag.
this is the final address generated by this configuration:
https://xxxx.com/grav/blog/tag:trains
the only one post with tag “trains” it is correctly under /blog
twig section code of main page of my blog:
<details>
<summary><strong>{{'SN2022.LABEL_ARGUMENTS'|t}}:</strong></summary>
<div data-sal="slide-up" class="py-4">
<a class="label-section" href="{{ base_url }}/blog/">ALL</a>
{% include 'partials/taxonomylist.html.twig' with {base_url: blog, taxonomy: 'tag', children_only: true} %}
</div>
</details>
site.yaml:
title: 'XXXX'
default_lang: en
author:
name: 'XXXX'
email: hello@XXXXX.com
taxonomies:
- category
- brand
- model
- section
- tag
metadata:
description: 'XXXXX'
summary:
enabled: true
format: short
size: 300
delimiter: '==='
redirects: null
routes: null
blog:
route: /blog
blog post md file:
---
title: 'California’s high-speed railway'
taxonomy:
category:
- blog
tag:
- trains
- constructions
author: xxxxx
---
some ideas?
thanks