mgsisk / inkblot

Inkblot is an elegant, fully responsive, highly customizable Webcomic-ready WordPress theme.
http://wordpress.org/themes/inkblot
45 stars 11 forks source link

Missing Widgetized Areas #32

Closed Mihari closed 9 years ago

Mihari commented 9 years ago

Webcomic Above and Below widgetized areas seem to be missing.

mgsisk commented 9 years ago

Ha ha, oops. Change lines 12 and 56 in webcomic/image.php:

<?php inkblot_widgetized('webcomic-header'); ?>
…
<?php inkblot_widgetized('webcomic-footer'); ?>

to:

<?php print inkblot_widgetized('webcomic-header'); ?>
…
<?php print inkblot_widgetized('webcomic-footer'); ?>
gstrout commented 9 years ago

The widgets @Mihari mentioned appear to be missing again: I notice the relevant file is now webcomic/display.php and lines 12 and 56 do currently read: <?php print inkblot_widgetized('webcomic-header'); ?> and <?php print inkblot_widgetized('webcomic-footer'); ?> as you indicated.

Is there something else missing?