Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
<txp:if_homepage></txp:if_homepage>?
Hey everyone!
I’ve just launched a redesign of my blog, but ran into a bit of a problem.
The default page has the latest 4 articles at the top of the page, and I would like these to disappear as soon as you go to page 2. Is there something like a <txp:if_homepage></txp:if_homepage> tag?
Thanks!
Textpattern projects: Maxvoltar, Made by Elephant, Twunch
Offline
#2 2008-09-25 12:32:12
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: <txp:if_homepage></txp:if_homepage>?
This should work:
<txp:if_section name="default">
<p>this</p>
<txp:else />
<p>that</p>
</txp:if_section>
Last edited by redbot (2008-09-25 12:33:47)
Offline
Re: <txp:if_homepage></txp:if_homepage>?
Well, no, because even if you’re on page 2, you’re still in the “default” section…
I’m using your code right now, check it out: http://maxvoltar.com/?pg=2
Textpattern projects: Maxvoltar, Made by Elephant, Twunch
Offline
Re: <txp:if_homepage></txp:if_homepage>?
<txp:if_section name="default" page="1">
Would seem like a sensible option if it existed?!
Sam Brown
sambrown.me | welovetxp.com
Offline
Re: <txp:if_homepage></txp:if_homepage>?
Or you could place your custom article forms into a new form and use:
<txp:php>
if(!isset($_GET['pg'])) {
echo "<txp:output_form form='MONKEY' />";
}
</txp:php>
A quick and dirty hack, but it works.
Sam Brown
sambrown.me | welovetxp.com
Offline
Re: <txp:if_homepage></txp:if_homepage>?
Thanks Sam, works like a charm!
Textpattern projects: Maxvoltar, Made by Elephant, Twunch
Offline
#7 2008-09-25 13:44:31
- redbot
- Plugin Author
- Registered: 2006-02-14
- Posts: 1,410
Re: <txp:if_homepage></txp:if_homepage>?
Sorry I was too rushed,
anyway glad you have found a solution
Offline
#8 2008-09-25 14:02:08
- els
- Moderator
- From: The Netherlands
- Registered: 2004-06-06
- Posts: 7,458
Re: <txp:if_homepage></txp:if_homepage>?
Just in case you’d prefer to use a plugin: wet_if_page :)
Offline
Pages: 1