I am attempting to create a custom region for my Drupal 7 sub theme. The process I am following is:

1) Specify sub region in .info file of subtheme like this: regions['sub_region'] = Sub region 2) In the page.tpl.php file, print render($page['sub_region']); at the location where I wish the sub region would appear.

3) Cleared the Cache

However, this new sub region does not appear in my Blocks.

Anybody have pointers as to what I am doing wrong ? Or need to do more

Thanks

link|improve this question

36% accept rate
feedback

2 Answers

Your syntax for the region declaration in .info is incorrect. There should not be single quotes wrapping the region name.

regions[sub_region] = Sub region

Documentation for .info file

link|improve this answer
actually having inverted quotes or not, did not make a difference. – Parijat Kalia Jan 20 at 20:19
feedback

It might be worth having a read of this, specially this section.

Region inheritance

Sub-themes do not inherit custom regions from a parent theme. If you are using custom regions, you should copy the region declarations from the parent theme's .info file. Be sure your sub-theme's page.tpl.php file matches the sub-theme's region settings.

EDIT

enter image description here

On your blocks page in the top right corner are tabs so you can set different blocks on different themes. Are you selecting the sub theme?

link|improve this answer
the custom region has been added to my sub theme, not to the main theme, I have to downvote since you did not read the question carefully – Parijat Kalia Jan 13 at 21:31
Have you actually tried putting it in the main theme and copying the .info file? – SpaceBeers Jan 14 at 9:44
nope..I simply add the custom region in the sub theme ? – Parijat Kalia Jan 15 at 0:34
Are selecting your sub theme using the tabs on the blocks page? – SpaceBeers Jan 15 at 8:14
don't understand your last comment, can you elaborate? – Parijat Kalia Jan 16 at 7:33
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.