Totally Zenned
- Join Date:
- Jul 2006
- Posts:
- 837
- Plugin Contributions:
- 1
turn off side columns on home page (code example)
This hack turns off one (or both) side columns when you are on your sites homepage only.
If you simply make an override in:
includes/templates/your-template/index/tpl_main_page.php
the changes apply to ALL categories, not just the home page.
Here is simple fix. Add:
if ($cPath == ""){
$flag_disable_right = true;
}
to the above override file and you can turn off your side column(s) on home page only.
Hope this helps someone.
Kiddo