Gossamer Forum
Home : Products : Gossamer Forum : Discussion :

Login behavior by template?

Quote Reply
Login behavior by template?
When my users log in under an alternate template set, I want to direct them to a specific forum instead of category_list.html.

Is there anyway I can configure this other than rewriting category_list.html to resemble a customized forum_view.html?

Thanks,

Last edited by:

ArmyAirForces: Nov 11, 2003, 9:50 AM
Quote Reply
Re: [ArmyAirForces] Login behavior by template? In reply to
If you never want to display the category list page in that template set, you could make category_list.html into a blank page with a meta-redirect tag (just for that template set, of course) such as:

Code:
<html>
<head>
<title>Redirecting to foo forum</title>
<meta http-equiv="refresh" content="0;url=gforum.cgi?do=forum_view&forum=123&<%hidden_query%>">
</head>
</html>

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com

Last edited by:

Jagerman: Nov 17, 2003, 5:00 PM
Quote Reply
Re: [Jagerman] Login behavior by template? In reply to
Ah ha. I probably could of come up with that if I had put some thought into it.

Simple solution, thanks!