It looks like Bottom 3 and Bottom 4 widget areas disappeared while updating to Startup 1.1.
Adding
- Code: Select all
<?php if(gk_is_active_sidebar('bottom3')) : ?>
<section id="gk-bottom3">
<div class="gk-page widget-area">
<?php gk_dynamic_sidebar('bottom3'); ?>
</div>
</section>
<?php endif; ?>
<?php if(gk_is_active_sidebar('bottom4')) : ?>
<section id="gk-bottom4">
<div class="gk-page widget-area">
<?php gk_dynamic_sidebar('bottom4'); ?>
</div>
</section>
<?php endif; ?>
to layouts/after.php seems to fix it.
Regards,
Thomas.