[SOLVED] URGENT category links in summary and detail cgblog
Posted: Sat Jul 07, 2012 3:22 pm
I'm sorry. I have this code working on my site, it prints out a link to the category page in both the summary and detail views, however when I created a new install with the same modules and extensions and css etc., on another site, it doesn't work at all. I must be missing something...
Code: Select all
{if $entry->categories}
<ul>
{foreach from=$entry->categories item='one_category'}
{foreach from=$categories item='one'}
{if $one_category.name == $one.name}
<li> <a class="tag" href="{$one.url}" title="{$one.name}">{$one.name}</a></li>
{/if}
{/foreach}
{/foreach}
</ul>
{/if}