From: Jeff D. <da...@da...> - 2002-01-07 23:38:37
|
Adam Shand said: > is it possible to have a different browse template for users that are > logged in as opposed to users that aren't? This is kludgy and subject to change, but for now (in 1.3.x) you can put code like the following in browse.html: <?php if ($user->is_authenticated()) {?> ... stuff for logged in users ... <?php } else { ?> ... stuff for "anonymous" users ... <?php } ?> |