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

Taxonomy Url Returning Incorrect Posts

Started by Muut Archive 11 years ago · 3 replies · 390 views
11 years ago

I have a page that uses the TaxonomyList plugin to get a list of all categories and how many posts are for each category. This works correctly, and I link for example to /foo/tag:bar to display all posts tagged with "bar." However, this page does not list all posts found using the TaxonomyList plugin. I've checked and the posts show up correctly when I navigate to /foo and are tagged properly. Any ideas? Thanks.

11 years ago

The TaxonomyList plugin will gather up all pages across your entire site and collate the results based on the taxonomy filter you set. In your case it's finding all the tags.

Now your linking to this /foo page, and that page is probably set up to display a list of pages, maybe the child pages. When you pass a param to this page with a taxonomy type and value, eg /foo/tag:bar, you are only going to be filtering the content of the /foo page collection. If you have pages with tag bar that fall outside of the collection defined by /foo they will not be found. You would either have to:

a) Setup /foo so that it potentially could display all pages
b) Create a new page /baz that can display all potential pages.

The best way to accomplish this is to ensure that all pages no matter what tags it has, has a common taxonomy type, eg category: filterable (just makes something up). Then you can create a page with a collection that is defined by:

TXT
cont ent:
   items:
      @taxonomy.category: filterable

Check the Collections Docs for more examples

11 years ago

I found I had set content.limit = 5 in my page header. For some reason that was being ignored when I viewed the full collection (/foo), but was limiting the collection to 5 results when I filtered it using the url (/foo/tag:bar). Thanks for your help!

11 years ago

A little more digging and it was a bug with my pagination code not showing up.

Suggested topics

Topic Participants Replies Views Activity
Archive · by Deleted User, 9 years ago
0 1341 9 years ago
Archive · by Muut Archive, 9 years ago
2 928 9 years ago
Archive · by Muut Archive, 9 years ago
2 4057 9 years ago
Archive · by Muut Archive, 9 years ago
1 2942 9 years ago
Archive · by Muut Archive, 9 years ago
3 1115 9 years ago