• This sounds strange i know but i want to delete the title in the header.php but not from the window itself..

    http://www.wearehq.com i want it as the title but i dont want it shown on the actual page… does that make sense??

    hope someone can help…

Viewing 7 replies - 1 through 7 (of 7 total)
  • I’m a novice so take anything I say with a grain of salt! I use a WP plugin called “All in One SEO Pack” to make the title tag for my blog without having it show on blog page itself. (In my blog, a background jpg is used for the actual title that shows up on the blog page, but you don’t even need to do that.) Not sure if this will work for you, but it sure solved it for me.

    The plugin has an admin page where you make these changes. The admin page for this plugin is listed on the left side at the bottom of the “settings” list on the dashboard. It will show up there after you have downloaded the plugin, then activated it in the plugin list.

    Hello,

    So do you want the title to appear in the browser window at the top? This is called the title tag. But you want to remove the text stating:

    WeAreHQ… Vintage Sunglasses, online Magazine, limited edition sneakers and clothing, photography services..

    from the top of the pages?

    If thats correct then in your source code I found this, which will be in your header.php.

    <div id="welcomeheading">
    WeAreHQ... Vintage Sunglasses, online Magazine, limited edition sneakers and clothing, photography services..		</a></h1>
    </div>

    So if you open up your header.php for your theme in a html editor remove the div with the welcomeheading.

    The actual text won’t appear in the header.php, as it will be being called from the title you typed in in the wordpress admin.

    So remove

    <div id="welcomeheading">
    "title tag"
    </div>

    Not sure what the title tag is off the top of my head.

    Hope this helps!

    You need to explain more clearly what you are after. I know you had difficulty trying to explain but the words you used didn’t make sense.

    I assume by “title” you are referring to
    WeAreHQ… Vintage Sunglasses, online Magazine, limited edition sneakers and clothing, photography services..
    that is appearing above the row of clickable buttons. I will refer to this as #2

    There is also a “title” that appears in the browser title bar area above the display of the website. On your site those are identical, but in reality they come from two different sources. I will refer to this as #1.

    I think what you are saying is you want to remove #2 and still keep #1 displaying in the browser title bar. Is this correct?

    If that is correct I’d suggest instead of removing #1 altogether, to continue to display it but display it off-screen where users can’t see it. The reason is it is your H1 header tag which is important for SEO purposes.

    If I misunderstood what you are after please explain.

    Thread Starter magdi

    (@magdi)

    yes you are correct… i want to get rid of the title above the sliding images but keep it on the window bar for search purposes…

    i really want to try to get my SEO on point and i know i need the title in the tag somewhere…

    i will try some of the options you guys have given… thank you…

    M

    Thread Starter magdi

    (@magdi)

    perfect…. it worked… thank you scdwb
    i removed
    <div id=”welcomeheading”>
    <?php $replacethese = array(‘[‘,’]’);
    $replacewith = array(‘<span id=”middleword”>’,'</span>’);
    echo str_replace($replacethese, $replacewith, get_bloginfo(‘title’)); ?>
    </h1>
    </div>

    is that right???

    Yep that’s correct. 🙂

    What if you just want to change the font of the text in the header that displays the title? Or you want to put an image in that area which has text in it already?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘i want to remove the title from the header…’ is closed to new replies.