Page 1 of 1
Fourth sidebar in bulletproof?
Posted: Sun Oct 21, 2007 9:52 pm
by reinhardl
Hi,
how do I create a fouth sidebar in config.inc.php?
array(
'var' => 'sidebars',
'name' => MYTEMPLATE_TITLE,
'description' => MYTEMPLATE_SIDEBAR_DESC,
'type' => 'string',
'default' => 'left,hide,right,footer1,footer2,'
),
does not work ..
greetings
reinhard
Posted: Sun Oct 21, 2007 9:56 pm
by carl_galloway
From memory the sidebar name is restricted to 6 characters, try changing footer1 and footer2 to ftr1 and ftr2. See if that works.
Posted: Sun Oct 21, 2007 10:38 pm
by garvinhicking
Hi!
Did you save the templates configuration? If you want fixed sidebars, do not make that variable configurable but use
Code: Select all
$sidebars = 'left,hide,right,foot1,foot2';
Instead. Also, what carl said, applies too.
Regards,
Garvin
Posted: Mon Oct 22, 2007 1:26 pm
by reinhardl
Thanks for the quick answers.
After modifying the names of the new sidebars (max 6 characters), it works.
greetings
Reinhard
Posted: Mon Oct 22, 2007 1:35 pm
by carl_galloway
Excellent. Is it a new template you're working on for release? Can we see it?
Posted: Mon Oct 22, 2007 8:12 pm
by reinhardl
carl_galloway wrote:Excellent. Is it a new template you're working on for release? Can we see it?
Hi Carl,
it`s a port of the glossyblue theme. You can see it on katalog-it.de as the default theme. But it did not finished the right sidebar.
The footer-sidebars are working now ...