When enabling the markup override "Use page--full-width-wrappers.tpl.php by default" for the Sky Theme, I get the following error message:

Notice: Undefined index: leaderboard in include() (line 104 of .../sites/all/themes/adaptivetheme/at_core/templates/page--full-width-wrappers.tpl.php).

I am trying to obtain full-width headers and footers with 3x33 GPanels headers and 4x25 GPanels footers in a subtheme based upon footheme, so if this won't fix, I'd appreciate a hint how to accomplish that.

Comments

Nicholas Cook’s picture

i think the warning is due to a "missing" region called leaderboard which appears in adaptive theme but not in sky. You can either add the region to your theme_name.info i.e regions[leaderboard] = Leaderboard or copy the page--full-width-wrappers.tpl.php to your templates folder in your theme and edit the file removing the following code:

    <?php if($page['leaderboard']): ?>
      <div id="leaderboard-wrapper">
        <div class="container clearfix">
          <?php print render($page['leaderboard']); ?>
        </div>
      </div>
    <?php endif; ?>
Jeff Burnz’s picture

Category: bug » support

Its not a bug, it just doesn't work with all themes, its more for when you are building from scratch.