Skip to content
Grav 2.0 is officially stable. Read the announcement →
Archive

Taxonomy is not a blog

Started by Muut Archive 10 years ago · 4 replies · 438 views
10 years ago

Help please, my head broke already. I have a few projects in the site. Displayed on a '/sites' in a list. Each project has its own category: 'categorysites', in the head of the module page with categories and has the approximate form:

TWIG
{% set categories = taxonomy.taxonomy['categorysite'] %}
  <div class="tags">{{ page.title }}:</div>
      {% for categorysite, items in categories %}
        <a class="link-category-sites" href="{{ page.parent.url }}/category{{ config.system.param_sep }},{{ categorysite }}">{{ categorysite }} (<span>{{ items|length }}</span>)</a>
      {% endfor %}

The names of the categories, the number in parentheses, it works, but when you click on a link, display the selected category does not take place, all projects are displayed initially. What could be the problem?
Taxonomy in a blog on this site works fine.
Sorry for my english, I hope everything is clear.
Thank

10 years ago

I can even use taxonomy not only for the blog on the same site?

10 years ago

If the taxonomy is named categorysite, then the URL must be /categorysite:something, you have /category:something now.

10 years ago

This non-playing no role. Can anyone give an example of a taxonomy for the blog and for projects such as taxonomy on one site? How to implement this? I do the same as for a blog, but it does not work.

10 years ago

Sorry, but I have made a mistake, and it works. The mistake was that the template with a list of projects I used the code:

TWIG
{% for p in page.find('/projects').children %}
{% include 'partials/project_item.html.twig' %}
{% endfor %}

Because of this, I obtained a list of projects and taxonomy was not working.
And it was necessary to:

TWIG
{% for p in page.collection %}
{% include 'partials/project_item.html.twig' %}
{% endfor %}

Ok :)

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1359 9 years ago
Archive · by Muut Archive, 9 years ago
2 936 9 years ago
Archive · by Muut Archive, 9 years ago
2 4066 9 years ago
Archive · by Muut Archive, 9 years ago
1 2955 9 years ago
Archive · by Muut Archive, 9 years ago
3 1121 9 years ago