I have a page with 2 columns and in column 1 I have the News Summary... When I click on the "more" link it generates a new page but it is still in 2 columns... Is it possible to change the template when clicking on "more" and if so... How?
Thanks alot
Changing template on "more" link!?!
Re: Changing template on "more" link!?!
iirc, create new page (you can hide it from menu) and add parameter page="pagename" to news module call
hope this helps
hope this helps
Re: Changing template on "more" link!?!
oh and ofcourse assign new template to that new page 

Re: Changing template on "more" link!?!
Ok... I see what you mean, but... Du I put the pagecall in the summary template like this???
The call to the new newspage should be called when i click [more...]
Code: Select all
{if $entry->summary}
<div class="NewsSummarySummary">
{eval var=$entry->summary}
</div>
<div class="NewsSummaryMorelink">
[{$entry->morelink detailpage="view news"}]
</div>
{else if $entry->content}
<div class="NewsSummaryContent">
{eval var=$entry->content}
</div>
{/if}
Re: Changing template on "more" link!?!
nope, use
{news number='5' detailpage="pagename"}
as stated in news module help
{news number='5' detailpage="pagename"}
as stated in news module help
(optional) detailpage="pagealias" - Page to display News details in. This can either be a page alias or an id. Used to allow details to be displayed in a different template from the summary.