
04-23-2010, 03:26 PM
|
|
|
Join Date: Oct 2007
Posts: 889
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Peter Ostry
I get the point of the developer but in this case the will of users and designers is definitely to see the sidebar always on all pages. Nobody in the forum actually wants or needs to close the sidebar. But users do it because they can do it, afterwards they forget the meaning of the arrow button and don't find the content they are looking for. They may interpret the button as some graphical ornament or whatever.
---
The suggestion made by chiptz does almost work but unfortunately has a side effect:
Removing the link of the open/close button in 'sidebarext_temp' does not remove it from the start page, where it remains operable. And if you close the sidebar on the start page, it isn't displayed on the subpages. There is just an empty space where the sidebar should be.
Is there something in the FORUMHOME template I could modify to force an open sidebar? Maybe I can set the variable $vboptions['sidebarposition'] permanently to 1 somehow, or is this a matter of the mod itself?
If I just manage to remove the arrow button, I may run into an unsolvable problem, because users whose sidebar is currently collapsed won't have the chance to get it open again. So one of the following methods would be best at the moment:
1) Keeping the sidebar always open, with or without the arrow button. Important is, that the sidebar stays open.
or
2) Forgetting the users sidebar status between sessions. If they really "lose" their sidebar, it should be here again after a new login.
Any hints?
My last option would be to replace the default 'ornamental' arrow button by a text button that tells the user what to do.
|
Off the top of my head
From the global_start hook on the top search for
PHP Code:
$bbandSBactive=0;
replace it with
PHP Code:
$bbandSBactive=1;
Let me know how it goes.
Again I don't recommend this change to anybody
|