This plugin enables per node theme/layout switching
-
Activate the plugin
-
Create or edit a new Node/Blog/Page and choose the theme/layout in the Switcher tab
or
-
Use the Switcher -> Paths menu to configure theme/layouts based on url path
You can limit layouts for use based on Content Type. To enable this feature, you will need run following during your app bootstrap cycle:
```php
Configure::write('Switcher', array(
'filterByContentType' => true,
'contentTypes' => array(
'page' => array(
'default',
'full',
),
'blog' => array(
'default',
'blog-sidebar',
),
),
));
```
Croogo >= 2.2 - http://croogo.org/
Good luck and have fun.
-- rchavik