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

edited May 2012 in Vanilla 2.0 - 2.8
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.

Comments

  • RaizeRaize vancouver ✭✭
    It's not as easy to do as in Wordpress.. thats all I can tell u
  • TimTim Operations Vanilla Staff
    In your config:

    $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]

  • Perfect! Thank you.
  • The only one I can't figure out is the menu on the right. The one with the sign out option. Is that a design issue or can it be moved to the top with the config option?
  • 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.

  • peregrineperegrine MVP
    edited May 2012
    applications/conversations/modules
    applications/vanilla/modules/
    applications/dashboard/modules
    
    just look for modules directories and the name of the files within will give you a clue to the name.
    

    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.

Sign In or Register to comment.