Wednesday 02 June 2010 4:43:56 am
Ok! After some fierce googling, I finally managed to find something that helped me! To be able to display custom templates / classes in left menu (in admin mode), you have to configure the ini file called contentstructuremenu.ini.php. It's located in "settings/siteaccess/(your_admin_siteaccess)/" This file will have something like:
<?php /*
[TreeMenu]
ShowClasses[]
ShowClasses[]=folder
ShowClasses[]=user_group
ShowClasses[]=custom_class */ ?>
The last one, is the name of your custom class, e.g. ShowClasses[]=page_article_full. It's the same as the identifier of your class. Now that it displays in the backend, I have to figure out how to get it do dispaly by default frontend as well. Probably some other config file.
|