Hi!
I’m adding a categories filter to an existing EE site.
What I want to do is simply show the different categories in a channel, and when somebody click on the category, only the entries for that category are shown.
This works:
{exp:channel:categories channel="blog" style="linear"}
<li><a href="http://{path=/blog/index}" title="Articles about {category_name}">{category_name}</a></li>
{/exp:channel:categories}The links generated now look like:
http://www.domain.local/blog/C2
and filtering works like a charm.
When selecting the option ““Use Category URL Titles In Links” the url’s change as they should into:
http://www.domain.local/blog/category/test1
The problem is that once I use category URL Titles instead of C1, C2, ... the entries aren’t filtered anymore.
In the “blog/index” page I’m simply looping like this:
{exp:channel:entries weblog="blog" limit="10" paginate="bottom"}
...
{/exp:channel:entries}Any ideas what can be wrong?