How can I hide "Start a New Discussion" from the category pages?
Platon
New
I only want it to appear when a person is browsing inside a category, or reading a thread, is doing this feasible by mere mortals?
0
Answers
public function Index($Page = '0'), you will see the following:$this->AddModule('NewDiscussionModule');Comment it off.
The controller directory basically contains controllers from which you can use to control little modules like the NewDiscussionModule (or button). Read this for more info.
public function CategoriesController_Render_Before($Sender) {if (isset($Sender->Assets['Panel']['NewDiscussionModule']))
unset($Sender->Assets['Panel']['NewDiscussionModule']);
}
body.Discussions .NewDiscussion { display: none; }