I want to display only the “summary” if the page is displaying more than 1 entry.
I have the default code:
{exp:weblog:entries weblog="{my_weblog}" orderby="date" sort="desc" limit="15" disable="member_data|trackbacks"}
<div class="entry">
<h2 class="title">{title}</h2>
{summary}
{body}
{extended}
....
But if I delete “{body}{extended}” when I click on the Permalink, it displays only the summary.
So I guess I have to insert an {if} between those.
This was solved using two templates, one with {summary} that links to the other, with full body and extended tags.
Now trying to do it without reloading the hole page.
