Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2008-09-25 12:22:36

maxvoltar
Member
From: Machelen, Belgium
Registered: 2007-08-16
Posts: 76
Website

<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

#3 2008-09-25 12:45:31

maxvoltar
Member
From: Machelen, Belgium
Registered: 2007-08-16
Posts: 76
Website

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

#4 2008-09-25 12:55:45

Sam
Member
From: New York City
Registered: 2004-06-26
Posts: 127
Website

Re: <txp:if_homepage></txp:if_homepage>?

<txp:if_section name="default" page="1">

Would seem like a sensible option if it existed?!

Offline

#5 2008-09-25 13:07:39

Sam
Member
From: New York City
Registered: 2004-06-26
Posts: 127
Website

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.

Offline

#6 2008-09-25 13:16:02

maxvoltar
Member
From: Machelen, Belgium
Registered: 2007-08-16
Posts: 76
Website

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

Board footer

Powered by FluxBB