Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2006-10-16 14:55:27
- hilary
- Member
- Registered: 2006-09-11
- Posts: 37
show the excerpt in article body
Hi guys!
Here is the code from my default form(most recent txp version)
<code>
<h3><txp:permlink><txp:title /></txp:permlink></h3>
<txp:if_article_list>
<txp:if_excerpt>
<txp:excerpt />
<p class=“more”><txp:permlink><txp:if_custom_field name=“continue”><txp:custom_field name=“continue” /> <txp:else />read more </txp:if_custom_field></txp:permlink></p>
<txp:else />
<txp:zem_prblock>
<txp:body />
</txp:zem_prblock>
<p class=“more”><txp:comments_invite /></p>
</txp:if_excerpt>
<txp:else />
<txp:body />
</txp:if_article_list>
</code>
Can anyone show me the code to make the excerpt show up on the article body page also, so far everything I tried broke the system!!
Thanks!
Last edited by hilary (2006-10-16 15:02:14)
Offline
Re: show the excerpt in article body
Something like this?
<pre><code>
<h3><txp:permlink><txp:title /></txp:permlink></h3>
<txp:if_article_list>
<txp:if_excerpt>
<txp:excerpt />
<p class=“more”>
<txp:permlink>
<txp:if_custom_field name=“continue”>
<txp:custom_field name=“continue” />
<txp:else />
read more
</txp:if_custom_field>
</txp:permlink>
</p>
<txp:else />
<txp:zem_prblock>
<txp:body />
</txp:zem_prblock>
</txp:if_excerpt>
<txp:else />
<txp:body />
</txp:if_article_list>
<txp:if_individual_article>
<txp:excerpt />
<txp:body />
</txp:if_individual_article>
<p class=“more”><txp:comments_invite /></p>
</code></pre>
Last edited by ruud (2006-10-16 18:00:04)
Offline
#3 2006-10-17 09:07:02
- hilary
- Member
- Registered: 2006-09-11
- Posts: 37
Re: show the excerpt in article body
That worked!
<code>
<txp:if_individual_article>
<txp:excerpt />
</txp:if_individual_article>
</code>
Like that, otherwise the article repeated, great solution though, thanks a million!!!
Offline
Pages: 1