Hi I need to know how to remove the right column from all sub-categories. I can remove them on top level categories and pages but can't seem to work out how to remove sub categories. My code is below:
if (in_array($current_page_base,explode(",",'shippinginfo,privacy,conditions,contac t_us,site_map,gv_faq,discount_coupon,unsubscribe,advanced_search,products_new,pr oducts_all')) ) {
$flag_disable_right = true;
}
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')) ) {
$flag_disable_right = true;
$flag_disable_left = false;
}
I tried something like
if (in_array($product_info&cPath,explode(",",'1_2_38&products_id=1')) ) {
$flag_disable_right = true;
$flag_disable_left = false;
}
But that doesn't work and tried a few variations.
Please can someone let me know how I would do this???
Thanks
Nick



