View Single Post
  #8 (permalink)  
Old 06-28-2007, 08:48 AM
beatniak's Avatar
beatniak beatniak is offline
Pligg Donor
 
Join Date: Apr 2006
Location: NL - 52.100863;5.108356
Posts: 310
Thanks: 14
Thanked 77 Times in 48 Posts
index.php.... line 39/40 says:
Code:
// figure out what "page" of the results we're on
$search->offset = (get_current_page()-1)*$page_size;
so give that var to smarty:
Code:
 $main_smarty->assign('pagenumber', $search->offset);
(or something like that)

use it in your template:

Code:
{if $pagename eq 'published'}
{if $request_category eq ""}
{if $pagenumber eq "0"}this is the homepage{/if}
{/if}
{/if}
__________________
Like my work? Donations are welcome if you would like to support my work!
Finger pliggin' good sites of mine: receptencocktail.nl / numarketing.nl / goboz.com

Last edited by beatniak; 06-28-2007 at 09:51 AM.. Reason: minor code typo
Reply With Quote
The Following User Says Thank You to beatniak For This Useful Post: