Closed (works as designed)
Project:
Framework
Version:
6.x-2.6
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
19 Oct 2010 at 13:29 UTC
Updated:
16 Nov 2010 at 10:27 UTC
Now at admin/build/block there is the 'Content' block-position. The blocks put there are under (after, at the end of) the node content.
For me it would be quite useful to be able to put a block above (before, at the beginning of) the node content, just below the Page Title (h2).
I would greatly appreciate this option.
Comments
Comment #1
rjgoldsborough commentedThat seems like a pretty specific request for a base type theme. Framework's intent is for easy modification so you could add a region and swap around some things in your tpl file and easily achieve the desired layout.
Comment #2
Deepika.chavan commentedHi,
In my case I created new region named 'content_upper' which is above the node content and below the page title, now I am able to put block above node content. Steps to do this:
1. Add following code in 'framework.info' file before '
regions[content] = Content' line.regions[content_upper]= Content upper2. Add following code in 'page.tpl.php' file before '
<?php print $content ?>' line.3. Please do clear cached data.
Rgrds,
Deepika Chavan.
Comment #3
Rico Heart commentedThanks for your kind help, Deepika Chavan, it works perfectly.
Now that I see how easy it was to add a region, I can agree with rjgoldsborough's opinion.
Comment #4
Rico Heart commented