Page 1 of 1

[solved] entire news summary as a link (to the detail of news) ?

Posted: Tue Oct 23, 2007 7:29 pm
by leMich
Hi,
is it possible to set a global a href like this ?

Code: Select all

<div class="NewsSummarySummary">
                <a href={$entry->morelink}> //this did not work :(
		    {eval var=$entry->summary}
                </a>
</div>
The idea is to have an alternative to the "moretext".
Thx.

Re: entire news summary as a link (to the detail of news) ?

Posted: Tue Oct 23, 2007 7:42 pm
by calguy1000

Code: Select all

<a href="{$entry->link}">{$entry->summary}</a>

Re: entire news summary as a link (to the detail of news) ?

Posted: Tue Oct 23, 2007 7:47 pm
by leMich
Thanks a lot !!!  ;)