Hello guys,

Does anyone now how to display the left side-box only on the main page when viewing from a mobile or a tablet?

I have installed the DIY responsive default template on my v1.5.1 and I need to turn all the side-boxes off for all other pages except the main page.


Tried to test by adding this in the responsive_default.php

if (in_array($current_page_base,explode(",",'contact_us')) ) {
$flag_disable_right = false;
$flag_disable_left = false;
}

and this into the responsive_mobile.php

if (in_array($current_page_base,explode(",",'contact_us')) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}

it disables the side-boxes for the contact us page on both desktop and mobile, It should heave disabled it only on the mobile version, something isn't working right.

Thank You!