To affect the subcategory 1_2_38 page, add 1_2_38 to the list:
if (in_array($cPath,explode(",",'74,83,75,70,69,68,76,77,80,73,78,71,82,79,72,81,6, 1,24,25,26,27,28,29,30,31,32,33,1_2_38')) ) {
$flag_disable_right = true;
$flag_disable_left = false;
}
But if you want to affect all category and subcategory pages (but not the home page), try
if ($current_page_base == 'index' and !$this_is_home_page) {
$flag_disable_right = true;
$flag_disable_left = false;
}
You have a long list of pages to disable the right column on. What pages do you want it active on? It might be easier to write a short list for
$flag_disable_right = false;
}else{
$flag_disable_right = true;
}



