Yes you can enable the right box but you will have to edit the background and unless you know how to edit the template it is not recommended to enable the right box as this template is designed for 2 columns layout.
To enable the right box, open includes/template/ocean_front/common/tpl_main_page around line 43 there is an IF statement that disable the right box for the whole site.
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'')) ) {
$flag_disable_right = true;
if you remove this $flag_diable_right=true; it will enable the right sidebox. You can also use this statement to disable the right or the left sideboxes on any page you select. For example I like to disable the sideboxes on the login page so on my website I have the following statement.
Code:
// the following IF statement can be duplicated/modified as needed to set additional flags
if (in_array($current_page_base,explode(",",'login')) ) {
$flag_disable_right = true;
$flag_disable_left = true;
}
I didn't mean to steel the lights from Clyde but I owe a lot for the forum.
Bookmarks