I'm a novice at dealing with themes here but will give it a shot. I would like to no how I would go about adding more regions to display in the front page. To make it more easier can i just find out how to show the content region for the front page. It currently skips the front page for some reason. Thank you in advance.

Comments

komal.savla’s picture

Hi,
To add the region on the front page, first define the region in the .info file like the following:

regions[content_bottom] = Content Bottom

Then add the following code in the page--front.tpl.php to print the region :

<div id="content_bottom">
  <?php print render($page['content_bottom']);?> 
 </div>

and clear the cache.
if you want to display the region on both front page as well as on all the other pages then add the above code in both page--front.tpl.php and page.tpl.php.

Thanks,
Komal

gtsopour’s picture

Assigned: Unassigned » gtsopour
Status: Active » Fixed
Issue tags: +Bluemasters theme, +bluemasters

I think that Komal's comment answers to this issue/question. So I changed the issue status to fixed. Thanks Komal (komal.savla)

Automatically closed -- issue fixed for 2 weeks with no activity.