Page 1 of 1

diff template for diff category

Posted: Mon Jul 04, 2005 5:12 am
by MySchizoBuddy
Is it possible to change the template based on which category the viewer is on.

Re: diff template for diff category

Posted: Mon Jul 04, 2005 9:41 am
by garvinhicking
Yes, by writing a plugin.

Using the "frontend_configure" hook you can do:

Code: Select all

if ($serendipity['GET']['category'] == 2) {
  $serendipity['template'] = 'template1';
} elseif ($serendipity['GET']['category'] == 3) {
  $serendipity['template'] = 'template2';
}
Regards,
Garvin