• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

Upgraded to Genesis 2.0 and lost my logo

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password

Community Forums › Forums › Archived Forums › General Discussion › Upgraded to Genesis 2.0 and lost my logo

This topic is: resolved

Tagged: genesis 2.0, Logo

  • This topic has 11 replies, 2 voices, and was last updated 12 years, 10 months ago by SimplyAA.
Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • August 28, 2013 at 6:21 pm #59358
    SimplyAA
    Member

    I just upgraded to Genesis 2.0 (I am using the Education theme) and my logo is gone. It was showing fine before but after the update it showed the title and description so I removed that and logo still doesn't show up. My site is http://www.getlevitin.com.

    Also, it is showing permalinks on the blog posts. I put this code into functions.php but they still show up:
    //* Remove the post permalink (requires HTML5 theme support)
    remove_action( 'genesis_entry_content', 'genesis_do_post_permalink', 14 );//* Remove the post permalink (requires HTML5 theme support)
    remove_action( 'genesis_entry_content', 'genesis_do_post_permalink', 14 );

    I would appreciate any help.


    Angela

    http://www.getlevitin.com
    August 28, 2013 at 8:15 pm #59380
    Sridhar Katakam
    Participant

    1) In functions.php, comment out or delete

    add_theme_support( 'custom-header', array(
    	'width' => 380,
    	'height' => 100,
    	'header-selector'	=> '#title a',
    	'header-text'		=> false
    ) );

    Add the following at the end:

    /**
     * Filter the genesis_seo_site_title function to use an image for the logo instead of a background image
     *
     * The genesis_seo_site_title function is located in genesis/lib/structure/header.php
     * @link http://blackhillswebworks.com/?p=4144
     *
     */
    
    	add_filter( 'genesis_seo_title', 'bhww_filter_genesis_seo_site_title', 10, 2 );
    
    	function bhww_filter_genesis_seo_site_title( $title, $inside ){
    
    		$child_inside = sprintf( '<a href="%s" title="%s"><img src="'. get_stylesheet_directory_uri() .'/images/LevitinGroup.png" title="%s" alt="%s"/></a>', trailingslashit( home_url() ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ), esc_attr( get_bloginfo( 'name' ) ) );
    
    		$title = str_replace( $inside, $child_inside, $title );
    
    		return $title;
    
    	} // End bhww_filter_genesis_seo_site_title

    Change LevitinGroup.png in the above to the name of your logo which should be placed in child theme's images directory.

    2) Add the following at the end of child theme's style.css (WP dashboard -> Appearance -> Editor):

    .header-image #title-area, .header-image #title, .header-image #title a {
    	text-indent: 0;
    }
    
    .header-image #title {
    	margin-top: 0.8rem;
    }

    Genesis Tutorials | Follow me on Twitter

    August 28, 2013 at 8:25 pm #59381
    SimplyAA
    Member

    You are wonderful! It worked perfectly.

    Thank you very much.


    Angela

    August 28, 2013 at 8:26 pm #59382
    SimplyAA
    Member

    Oops, did you happen to know the answer to the second portion about removing the permalinks?


    Angela

    August 28, 2013 at 8:48 pm #59386
    Sridhar Katakam
    Participant

    Do you want to get rid of hyperlinks for post titles at http://getlevitin.com/blog/?


    Genesis Tutorials | Follow me on Twitter

    August 28, 2013 at 8:52 pm #59387
    SimplyAA
    Member

    I want to get rid of the permalinks that are showing on the home page as the last line in the two blogs. http://www.getlevitin.com

    They show as:
    http://getlevitin.com/shari-levitin/

    and
    http://getlevitin.com/showtime-2/

    Before I upgraded to Genesis 2.0 tonight these were NOT showing up.


    Angela

    August 28, 2013 at 9:31 pm #59393
    Sridhar Katakam
    Participant

    In style.css

    change

    #description {
        color: #34678a !important;
    
    #post=1220 .entry-title {
    	display: none;
    }

    to

    #description {
        color: #34678a !important;
    }
    
    #post-1220 .entry-title {
    	display: none;
    }

    and add this:

    .home .entry-content p.entry-permalink {
        display: none;
    }
    

    Genesis Tutorials | Follow me on Twitter

    August 28, 2013 at 9:34 pm #59396
    SimplyAA
    Member

    The change listed above is the same as the change to? I do understand to add this:

    .home .entry-content p.entry-permalink {
    display: none;
    }

    but the change and to sections are the same so there wouldn't be a change?


    Angela

    August 28, 2013 at 9:35 pm #59397
    Sridhar Katakam
    Participant

    See carefully. They are not the same.


    Genesis Tutorials | Follow me on Twitter

    August 28, 2013 at 9:41 pm #59399
    SimplyAA
    Member

    Thank you. That worked. Can you tell me what that change did so I understand for later?


    Angela

    August 28, 2013 at 10:00 pm #59403
    Sridhar Katakam
    Participant

    In

    #description {
        color: #34678a !important;

    closing brace was missing.

    In

    #post=1220 .entry-title {
    	display: none;
    }

    #post=1220 is not valid. It should be #post-1220


    Genesis Tutorials | Follow me on Twitter

    August 28, 2013 at 10:14 pm #59409
    SimplyAA
    Member

    Thank you for your help. I really appreciate it.


    Angela

  • Author
    Posts
Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Upgraded to Genesis 2.0 and lost my logo’ is closed to new replies.

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2026 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble