I have been looking how to add a [more] link to CGBlog. I don't want just the title to link to the full content, but also at the end of the summary. Can anybody help?
Thanks in advance

So it looks like this is already functional. Are you just looking for the tag to use?(optional) moretext="more..." - Text to display at the end of a cgblog item if it goes over the summary length. Defaults to "more..."
Code: Select all
<a href="{$entry->detail_url}" title="{$entry->title|escape:htmlall}">{$entry->title|escape}</a>
Code: Select all
<a href="{$entry->detail_url}" title="More....">More...</a>
Code: Select all
{if $entry->summary}
<div class="CGBlogSummarySummary">
{eval var=$entry->summary}
</div>
{else if $entry->content}
<div class="CGBlogSummaryContent">
{eval var=$entry->content}
</div>
{/if}