Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#16 2007-04-23 20:03:57
- els
- Moderator

- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: Textpattern Navigation
Category lists use the default page (= front page) by default. So if the category pages are not displayed, the categorized articles are probably in sections that are set not to be displayed on the front page (in Presentation > Sections). If the article that must be displayed on the front page is a fixed one, one way to solve this is setting all relevant sections to show on the front page, and in your page template use something like this:
<txp:if_category> <!-- if we are on a category page -->
<txp:article />
<txp:else /> <!-- if we are on the front page -->
<txp:article_custom id="xx" />
</txp:if_category>
Offline