Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
#1 2006-03-07 17:00:39
- beechy
- Member
- Registered: 2006-03-02
- Posts: 92
display different forms in the same template in different sections
How do I display different forms in the same template in different sections.
Ie i have the following sections setup;
Home
about
contact
servic
I want to use the same template for each section but call different forms containning list items depending on what section you are in.
Offline
#2 2006-03-07 17:05:44
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: display different forms in the same template in different sections
On your page template:
<code>
<txp:if_section name=”“>
content for the home page
</txp:if_section>
<txp:if_section name=“about”>
content for section about
</txp:if_section>
</code>
…etcetera…
Don’t forget to set all sections to use the same page template.
Offline