Site Name and Tag line not showing

Discussion in 'Traffica WordPress Theme' started by dellarby, Oct 6, 2013.

Thread Status:
Not open for further replies.
  1. dellarby

    dellarby New Member

    Joined:
    Oct 6, 2013
    Messages:
    9
    Likes Received:
    0
    I just upgraded from the free version to the pro version and in doing so all my slider and home page feature content was lost. Even after I replaced all this content, I still can't get the Site Name and tag line to appear. I uploaded my logo, but my site name is missing.

    See letsgocurling.com
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Go to

    Settings >General

    and enter your site title and tag line there.

    Sending image for reference

    2013-10-07_1229.png
     
  3. dellarby

    dellarby New Member

    Joined:
    Oct 6, 2013
    Messages:
    9
    Likes Received:
    0
    That was the first thing I checked! My info is there but it doesn't appear in my header.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Go to the header.php present in your theme directory and paste the code given below

    Code:
    <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /><br><h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1>
    <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2></a>
    In place of

    Code:
    <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a>
    See the link for reference.
    http://screencast.com/t/9xlNrqW7

    This will solve your issue.
     
  5. dellarby

    dellarby New Member

    Joined:
    Oct 6, 2013
    Messages:
    9
    Likes Received:
    0
    I've made that change and my site name and description do indeed show up. However, it is placed under the logo, not next to it. It really doesn't look right at all. Can you try again?
     
  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  7. dellarby

    dellarby New Member

    Joined:
    Oct 6, 2013
    Messages:
    9
    Likes Received:
    0
    Thanks!
     
Thread Status:
Not open for further replies.

Share This Page