Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
[Documentation] Panel Order
Cablespider
New
I've been through the forum a few times looking for answer. I'm trying to figure out how to order the sidebar. The tag box is at the top and I'd like it to be at the bottom. I'd like to move recent activity below everything else as well.
Tagged:
0
Comments
$Configuration['Modules']['Vanilla']['Panel'] = array('NewDiscussionModule', 'SignedInModule', 'GuestModule', 'Ads');
Shift those around and add ones that aren't there (those are just the defaults)
Vanilla Forums COO [GitHub, Twitter, About.me]
I apologize if this is a foolish question, but how can I figure out what the various modules are named? I can't find it in the source code, and they don't seem to follow the naming of the php file.
or grep for modules or do a recursive directory listing and grep for modules.
grep -ri modules *
ls -alR | grep modules.
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.