We have a section of pages that don't use our general layout all under a certain folder (www.site.com/folder, www.site.com/folder/page1, www.site.com/folder/page2 etc ). We currently load our header and footer manually. Instead I just want to create a layout for them to use. However, since I did not built the original site, I can't figure out where it is set to not use the general layout. It is not based on URI since I created a new page under the folder and it does automatically use the general layout (www.site.com/folder/testpage used the regular layout).
I'm not seeing a <?php fuel_set_var('layout', '')?> within any of the views, nor any $vars['layout'] = ''; under the _variables folder.
Where else can this be set?
Comments
1. In the _variables/global.php using the $pages['folder/:any'] = array('layout' => 'my_layout');
2. In the views/_variables folder (perhaps the a file called "folder".php where "folder" is the first URI segment name). Or even in the
3. Using fuel_set_var('layout', '')
4. In a controller
5. In the CMS under pages or even site variables
Check those places and let me know if you find what you need.
Thanks for your help.