Front Page › D5 Creation Forum › General Support › Small Business Pro – Header graphic won't display › Reply To: Small Business Pro – Header graphic won't display
Interestingly enough, I’ve decided to troubleshoot comparing the code of the Free vs the Pro. Replaced the following line from the Pro version
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<div id ="header-content"> <!-- Site Titele and Description Goes Here --> ------------------> <a href="<?php echo esc_url( home_url( '/' ) ); ?>"><?php if ( of_get_option('site-logo') != '' ): ?><img class="site-logo" src="<?php echo of_get_option('site-logo'); ?>"/><h1 class="site-title-hidden"><?php echo bloginfo( 'name' ); ?></h1><?php else: ?><h1 class="site-title"><?php echo bloginfo( 'name' ); ?></h1><?php endif; ?></a> <---------------- <h2 class="site-title-hidden"><?php bloginfo( 'description' ); ?></h2> <!-- Site Main Menu Goes Here --> <nav id="smallbusiness-main-menu"> <?php if ( has_nav_menu( 'main-menu' ) ) : wp_nav_menu( array( 'theme_location' => 'main-menu' )); else: wp_page_menu(); endif; ?> </nav> </div><!-- header-content --> |
With this from the free version, and it’s successful. Go figure.
<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img class="site-logo" src="<?php header_image(); ?>"/></a>
However, my troubles now are getting the homepage to show the static page down below as page id 364 on the Pro version. Again, Live preview on the free, it works fine. But not on Pro. Have I missed a checkbox somewhere?