• Resolved tfasbend

    (@tfasbend)


    The blog title, which I define in settings, will not change under the WOO Meta-Morphosis theme. When I switch to the Classic scheme, everything works fine. But on the WOO scheme I cannot get rid of the title ” Meta-Morphosis”.

    I checked the files, there is none with a hard entry of that unwanted title. WP-Cache is not loaded. Sort of mystery. Anybody can help?

    (I already posted this cry for help)

    6 min later I find out: That title is a L-O-G-O …..

    ISSUE RESOLVED.

Viewing 4 replies - 1 through 4 (of 4 total)
  • AnaBanana

    (@anabanana)

    How did you correct it?

    I am having the same problem with the Bueno theme. I don’t want a logo, just text, like in the Classic theme.

    <h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
    		<h2><?php bloginfo('description'); ?></h2>

    is the code that shows text blog name and description

    You need to incorporate it in the appropriate place of your header.php

    AnaBanana

    (@anabanana)

    Rev. Voodoo, thanks!

    Now…

    How do I know where the appropriate place is in the header?

    This was tested out on the Bueno Woo theme, but it should work on the others as well. Just please save a copy of the original code in notepad or something before you start changing templates. ??

    Okay, I figured it out.

    First I had to put the following in the custom css box:

    #logo { }
    #logo img { display: none; }
    #logo .site-title, #logo .site-description { }

    to override the logo as title setting.

    Then, thanks to RVoodoo’s reply, I went to the header.php in the Editor and replaced this:

    <a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('description'); ?>"><img class="title" src="<?php if ( get_option('woo_logo') <> "" ) { echo get_option('woo_logo'); } else { bloginfo('template_directory'); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a>

    With this:

    <h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>
    		<h2><?php bloginfo('description'); ?></h2>

    From there you could just customize your title and description font.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Blog title problem’ is closed to new replies.