Some time ago I installed a theme for my blog. It was really good and had almost all features I wanted but now I came to know that it has a small bug that there is no place to upload the site logo. I have tried my very best looking into the framework and the child theme but was unable to find any option to upload the logo image(It does have a option which asks the user if he or she wants to display text logo or image logo).

Description of the theme

The theme is divided in to two parts the framework and the child theme.


header.php


<?php
/**
 * WARNING: This file is part of the core Genesis framework. DO NOT edit
 * this file under any circumstances. Please do all modifications
 * in the form of a child theme.
 *
 * Handles the header structure.
 *
 * @package Genesis
 */
do_action( 'genesis_doctype' );

do_action( 'genesis_title' );

do_action( 'genesis_meta' );

wp_head(); /** we need this for plugins **/
?>
</head>
<body <?php body_class(); ?>>
<?php
do_action( 'genesis_before' );
?>
<div id="wrap">
<?php
do_action( 'genesis_before_header' );
do_action( 'genesis_header' );
do_action( 'genesis_after_header' );

echo '<div id="inner">';
genesis_structural_wrap( 'inner' );

functions.php


<?php
/**
 * WARNING: This file is part of the core Genesis framework. DO NOT edit
 * this file under any circumstances. Please do all modifications
 * in the form of a child theme.
 *
 * This file calls the init.php file, but only
 * if the child theme hasn't called it first.
 *
 * This method allows the child theme to load
 * the framework so it can use the framework
 * components immediately.
 *
 * @package Genesis
 */
require_once( dirname( __FILE__ ) . '/lib/init.php' );

Please help me out with it. Thanks

link|improve this question

"no place to upload the site logo" -- does this help? magnet4marketing.net/2010/12/18/… – JP. Jan 5 at 21:31
feedback

1 Answer

up vote 1 down vote accepted

Check with the Genesis framework author. If it's a theme framework, I would have thought they'd be a theme option somewhere (possible under 'Appearance' in wp-admin) to upload a logo image.

link|improve this answer
Yes they is an option to select theme or text in the header but no area to upload the logo image. I have checked many times. – Startup Crazy Jan 2 at 14:37
So what image does get displayed if you select 'image' as the logo type (text or image)? – Martin Bean Jan 2 at 15:12
There is no option to upload the image. If I select image for logo option then it displays blank area there(No image gets displayed). I even tried uploading a image using FileZilla but still that did not helped. – Startup Crazy Jan 2 at 15:18
Have you got the URL of your website? – Martin Bean Jan 2 at 15:24
Check out the 'Genesis for Beginners User Manual (PDF format)' link at studiopress.com/tutorials. Chapter 7 goes into details on the header/logo, so follow that based on your current setup. – Martin Bean Jan 2 at 15:28
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.