Hi,
When you upload logo in the options panel, only URL is printed, instead of an image. The problem comes from header.php on lines 34-35:
<?php if (woodberry_get_option('woodberry_logo') != '') { ?>
<?php echo woodberry_get_option('woodberry_logo'); ?>
I’ve edited it with:
<?php if (woodberry_get_option('woodberry_logo') != '') { ?>
<img src="<?php echo woodberry_get_option('woodberry_logo'); ?>" alt="<?php bloginfo('name'); ?>">
Hope it helps if somebody encounter the same problem.
]]>