Log in

View Full Version : determining page number


schlizzag
04-13-2007, 03:30 PM
i'm rather new to vbulletin, so apologies if this is a rather newb-ish question.

i'm trying to edit a template, and i want to display something only if it is on page 1 of a thread

what if statement do i need to use to wrap around the html i want to hide if i am on a page other than 1?

harmor19
04-13-2007, 04:25 PM
I would think it would be

<if condition="empty($vbulletin->GPC['pagenumber'])">
html code here
</if>

schlizzag
04-13-2007, 05:05 PM
I would think it would be

<if condition="empty($vbulletin->GPC['pagenumber'])">
html code here
</if>

that doesn't work... apparently pagenumber has a value even if page isn't defined in the url

i tried it and it got rid of the html i wanted to exclude on every page, even the first

tried !empty and it showed up on every page

harmor19
04-13-2007, 05:09 PM
Try this

<if condition="$_GET[pagenumber] == 1 OR empty($_GET[pagenumber])">
html code here
</if>

schlizzag
04-13-2007, 05:15 PM
great, thanks! that did it

knowing that i can grab a value with $_GET[var_name] for comparison in an if condition= statement is key, and that will help me with future tinkering

thanks again...