Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#16 2010-06-30 19:23:55
- fantasmo
- Member
- Registered: 2010-05-05
- Posts: 40
Re: <txp:if_article_category> not recognising category
Hi, how can I write multiple if_article_category cases?
I tried to write different IFs with each an ELSE inside, like:
<txp:if_article_category name="flowers">
<p>Here will be a special header image for flowers</p>
</txp:else>
<p>General header for everything else, like about page, contact page, etc.</p>
</txp:if_article_category>
<txp:if_article_category name="animals">
<p>Here will be a special header image for animals</p>
</txp:else>
<p>General header for everything else, like about page, contact page, etc.</p>
</txp:if_article_category>
And a second try was, writing IFs for each case, but in the last case writing no name=“category”:
<txp:if_article_category name="flowers">
<p>Here will be a special header image for flowers</p>
</txp:if_article_category>
<txp:if_article_category name="animals">
<p>Here will be a special header image for animals</p>
</txp:if_article_category>
<txp:if_article_category>
<p>General header for everything else, like about page, contact page, etc.</p>
</txp:if_article_category>
That didn’t work:-(
How is it possible to make multiple IFs with ONE CASE that should happen when none of the IF-condition is met?
Offline
Re: <txp:if_article_category> not recognising category
fantasmo wrote:
Hi, how can I write multiple if_article_category cases?
As with so many Txp problems, first thing to ask is, has Bloke written a plugin for this?
Code is topiary
Offline
#18 2010-06-30 19:47:49
- els
- Moderator

- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: <txp:if_article_category> not recognising category
<txp:if_article_category name="flowers">
<p>Here will be a special header image for flowers</p>
</txp:else>
<txp:if_article_category name="animals">
<p>Here will be a special header image for animals</p>
<txp:else />
<txp:if_category name="yetanothercategory">
<p>Here will be a special header image for yet another category</p>
<txp:else />
<p>General header for everything else, like about page, contact page, etc.</p>
</txp:if_article_category>
</txp:if_article_category>
</txp:if_article_category>
Offline