I have looked all over for a solution to this problem and my head is fried,
what I want to do is remove all side boxes from the main(index) page with out loosing the side boxes when a catagory is clicked from the side boxes on one of my EZpages, the problem seems to be that the categories are a path from the index page so the side boxes dont show.

What I have is an EZpage called "on line shop" which is on the header and footer menues on all pages, I dont want side boxes on the index page and a few other pages, the EZpage (on line shop) has the side boxes.
I have removed the side boxes from the other pages with no problem by editing the tpl_main_page.php like this;
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
  if (in_array($current_page_base,explode(",",'contact_us,conditions,privacy')) ) {
    $flag_disable_left = true;
  }
How ever if I add index to the array it removes the boxes from the index page and from any catagory pages too.

Is there a solution to this?