Really?
So the package manager still working for old fashioned mod in addition to new one? So if I want to remove the header part, can I still do it via package manager?
Let say my mod is to remove header by replacing this part:
echo '
</div>
<div id="header" class="wrapper', !empty($settings['header_layout']) ? ($settings['header_layout'] == 1 ? ' centerheader' : ' rightheader') : '', '"', empty($context['minmax_preferences']['upshrink']) ? '' : ' style="display: none;" aria-hidden="true"', '>
<h1 id="forumtitle">
<a href="', $scripturl, '">', $context['forum_name'], '</a>
</h1>';
echo '
<div id="logobox">
<img id="logo" src="', $context['header_logo_url_html_safe'], '" alt="', $context['forum_name_html_safe'], '" title="', $context['forum_name_html_safe'], '" />', empty($settings['site_slogan']) ? '' : '
<div id="siteslogan">' . $settings['site_slogan'] . '</div>', '
</div>';
// Show the menu here, according to the menu sub template.
echo '
</div>';
To just this:
// Show the menu here, according to the menu sub template.
echo '
</div>';
I created a normal old fashioned mod package, but it doesn't work so far.