Tips tagged “Dynamic”
- Structure Module: Category Pages
-
Posted on July 30, 2009 by Hambo
To show a weblog listing in a Structure managed template you have to use dynamic=“off”. But this also means that if you use a category filter, the URL will be ignored.
This usually means creating a dedicated category template but this isn’t the ExpressionEngine way right?!
So let’s use embedded
- Make sure to format/code your dynamic lists properly
-
Posted on June 08, 2009 by JonnyUK
This is a very basic ‘mistake’ I often see in various code snippets involving dynamic lists.
In cases where you want to dynamically fill up a list, often people use code similar to the following:
<ul>
{exp:weblog:entries weblog="your_weblog" dynamic="off"}
<li>{title}</li>
{/exp:weblog:entries}
</ul
