I have a problem with CGblog and I can't make it work
First I wanted to make the categories linkable. I did that with some help of this forum. See the following code (not working with internal urls of mod_rewrite unfortunatly).
Code: Select all
{if $entry->categories}
<div class="CGBlogDetailCategory">
{strip}
{foreach from=$entry->categories item='one_category'}
{capture assign='urlparam'}&category={$one_category.name}{/capture}
{cms_selflink page='categorie' urlparam=$urlparam text=$one_category.name|strtoupper}
{/foreach}
{/strip}
</div>
{/if}
</div>
Code: Select all
{CGBlog summarytemplate="RelatedItems" category=$one_category.name sortby="random"}
Thank you in advance!
- Rick