I just downloaded and installed the latest version. The 'featured' box isn't showing up at all. I can add blocks to it but none of the blocks added show on the front end. Also, in the blocks admin interface, there is no "yellow" region showing the name of the block for featured. But right sidebar and left, middle, right, footer al lshow. All of the other regions are showing no problem.

Comments

galagagod’s picture

Also tried dev version and still no feature box.

nomonstersinme’s picture

Wow thats weird.. must be something with the latest drupal that screwed me here. i'm working on fixing this, will post back asap :)

nomonstersinme’s picture

Version: 6.x-1.2 » 6.x-1.x-dev
Status: Active » Closed (fixed)

Fixed this in CVS.. http://drupal.org/cvs?commit=446858

Will be available from dev download by midnight i believe..

To fix now, open page.tpl.php and replace:

  <?php if ($is_front):  ?>
      <div id="feature">
        <div class="wrapper">
        <?php print $feature; ?>
        </div>
      </div>
  <?php else: ?>

with:

 <?php if ($feature):  ?>
      <div id="feature">
        <div class="wrapper">
        <?php print $feature; ?>
        </div>
      </div>
 <?php else: ?>

that was a stupid mistake.. apologies!!