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.
Options

Sidebar (Panel) not displaying on new discussion page

Hi Vanilla forums,

I am currently using your software to run my support forum over at http://support.advancedcustomfields.com and am having trouble making a simple update to the theme.

When you visit the 'New Discussion' page, the sidebar appears blank. How can I get it to populate like on a discussion page?

Thanks
Elliot

Comments

  • Options

    yes the post controller does not add all the modules to the panel. You can use themehooks

    public function PostController_Render_Before($Sender){
          // Add modules
          $Sender->AddModule('GuestModule');
          $Sender->AddModule('SignedInModule');
          $Sender->AddModule('NewDiscussionModule');
          $Sender->AddModule('CategoriesModule');
          $Sender->AddModule('BookmarkedModule');
    }
    

    secondly it is being hidden you can do

    body.Post #Panel {
        display: block;
    }
    

    in your custom.css

    also you may have to restyle the form.

    grep is your friend.

Sign In or Register to comment.