I've installed the theme, but the navigation menu does not display in the right column (even though there is space for it).
I've gone into blocks to set the navigation block as the right column, but nothing happens. The right column does not even appear to be labelled in yellow, unlike the other zones.
The instructions mention that the theme requires the phpTemplate theme engine, but as far as I can tell, it is installed by default in version 4.7 and above, so there is no real requirement.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | page.tpl_.php_.txt | 2.34 KB | nimazuk |
Comments
Comment #1
TheAlienShore commentedI'm trying to figure this out as well.
Comment #2
TheAlienShore commentedOk, I figured it out. Open your page.tpl.php file and find this chunk of code:
In the first line, change
($right)to($sidebar_right)In the fourth line, change
$rightto$sidebar_rightComment #3
nimazuk commentedThe problem is that somehow page.tpl.php for D5.x is replaced with one for D6.x
It could be my fault when I was putting the files in the CVS.
I attached a new page.tpl.php, you can use it instead of existing one or you can easily fix this problem by doing following replacement in existing page.tpl.php line 64:
Replace this:
With this
I will fix this problem as soon as I can release a new version for D5x
(if you want to use the attached file, remember to rename it to page.tpl.php)
Comment #4
iantresman commentedWorked for me, many thanks to you both.