• Site title not working. When I load the index of my website the title in the browser just shows as the URL, but when I click links that stay within the website they load their respective titles (About, Contact Us, etc..)

    Any ideas?

    Also is it possible to just disable the title in the header and not throught the website? I want to keep the text title but I have an graphical header with text made in photoshop and do not wish to use the coded text.

    http://sife.goarmada.com

    Thanks!

Viewing 9 replies - 1 through 9 (of 9 total)
  • Swazee,

    Looking at your source code, you have nothing in the title tags.

    2 things to do:

    1 – make sure that in your admin general settings, you have set the blog title and tagline.

    2 – check header.php of your theme. Did you remove something?
    The code in a fresh copy of your theme, reads <title><?php bloginfo('name'); ?><?php wp_title(); ?></title>.

    Then, to remove the the title in the header over your graphic, in header.php of your theme take off these lines:

    <div id="caption">
    		<h1 id="title"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1>
    		<div id="tagline"><?php bloginfo('description'); ?></div>
    	</div>

    That should do it.

    jarredsphoto

    (@jarredsphoto)

    Hi,

    I am using the Kanata theme and wasn’t able to find the item you were suggesting to get rid of to disable the title/tagline. I have resorted to making the title/tagline each a period. Not a great solution as you might imagine. I am not too experienced with this coding as a heads up. I was able to figure out how to edit the header physically and do light modification like adding things to a sidebar with some html code, but that isn’t much as you can imagine. Any help would be greatly appreciated. Thank you.

    jarredsphoto

    (@jarredsphoto)

    Any suggestions?

    buddha-trance

    (@buddha-trance)

    For the Kanata theme, look in header.php for

    <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
    		<div class="description"><?php bloginfo('description'); ?></div>

    Delete those lines to get rid of title and tagline.

    jarredsphoto

    (@jarredsphoto)

    Thank you very much for taking the time out! Take care.

    Hello,

    I am using the barecity theme. I am trying to remove the tagline under my heading. My coding skills are minimal, but I am able to open header.php files etc and minor adjustments. I thought I found the correct bit of code to delete, but it only seemed to work inside of postings and not on the home page. If anyone can point me in the right direction, I’d be very grateful. Thanks in advance.

    http://shaheeilyas.com/barecity/

    @cbg – For the barecity theme, the tagline to remove should be

    <div id="desc">
    				<a href="<?php bloginfo('url'); ?>/">&raquo;<?php bloginfo('description'); ?></a>
    			</div>

    Awesome. Thanks so much buddha trance. I had found that tagline, but must have not deleted everything. Thanks for your time.

    Hello,

    I’ve got the mandigo theme.
    I also trying to remove something.
    I’d like to remove for each post the “Post by”, the tag and the date of the post.

    If someone can help me, it will be great !
    Thanks in advance.
    🙂

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Disable title/tagline’ is closed to new replies.