1

Topic: Can I make the logged out and the logged in pages different?

in webby2.
I notice that the open page when youre logged it out is very similar to the open page when you first log in on webby2.

I Dont want to put members pictures on the non registered public open page, I want to put some models photos there instead.

But when the person logs in I want them to see the normal page with other members inside.

Is it possible to do this?
I cant tell the page names so Im guessing theyre both index.php, so I dont know if this can be done.

Last edited by mrmax (2008-04-27 17:31:26)

2

Re: Can I make the logged out and the logged in pages different?

It's possible. Edit 'templates/webby2/homepage.tpl' and find something similar to this code

{new_members:limit=4,pictures=1,cache_time=10}

Replace it with this

<!-- IF loggedin -->
  {new_members:limit=4,pictures=1,cache_time=10}
<!-- ELSE -->
  member not logged in, display models here.
<!-- ENDIF -->
Developer