Gamepress: Custom Image Logo no longer working!!!
-
[Moderator note: Please don’t type “LIKE THIS”. Three exclamation marks are enough emphasis.]
https://www.realtalktherapist.com
I was able to restore the original header.php file but now the custom logo isn’t working. I have uploaded the image and it’s saved. But it’s not showing on the site. Please Help!
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo( 'charset' ); ?>" /> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title><?php wp_title(); ?></title> <?php if(of_get_option('gamepress_favicon_radio') == 1) : ?> <link rel="shortcut icon" href="<?php echo of_get_option('gamepress_favicon_url'); ?>" type="image/x-icon" /> <?php endif; ?> <link rel="profile" href="https://gmpg.org/xfn/11" /> <!-- End Stylesheets --> <!--[if lt IE 8]> <link rel="stylesheet" href="css/style_ie.css" type="text/css" media="all" /> <![endif]--> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <!-- PAGE --> <div id="page"> <!-- HEADER --> <header id="header"> <div id="header-inner"> <div id="logo"> <?php if (of_get_option('logo_image')) { ?> <h1><a href="<?php echo home_url(); ?>"><img src="<?php echo of_get_option('logo_image'); ?>" alt="<?php bloginfo( 'name' ); ?>" /></a></h1> <?php }else {?> <h1 id="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?> - <?php bloginfo('description'); ?>" rel="home"><?php bloginfo('name'); ?></a></h1><p><?php bloginfo('description'); ?></p> <?php } ?> </div> <div class="clear"></div> <nav> <?php if(has_nav_menu('primary-menu')){ wp_nav_menu(array( 'theme_location' => 'primary-menu', 'container' => '', 'menu_id' => 'primary-nav', 'container_class' => 'main-menu', 'menu_class' => 'nav' )); }else { ?> <ul class="nav" id="primary-nav"> <?php wp_list_pages('title_li='); ?> </ul> <?php } ?> <div id="search"> <?php get_search_form(); ?> </div> </nav> </div> <!-- END HEADER-INNER --> </header> <div id="content-wrapper"> <div id="content-inner">
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘Gamepress: Custom Image Logo no longer working!!!’ is closed to new replies.