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
0
Comments
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.