• Im using twenty eleven theme,and this is off of my content- page. php
    What should I remove or add.Ive already copied and Pasted onto my wordpad just in case of a screw up

    <article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
    <header class=”entry-header”>
    <h1 class=”entry-title”><?php the_title(); ?></h1>
    </header><!– .entry-header –>

    <div class=”entry-content”>
    <?php the_content(); ?>
    <?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”><span>’ . __( ‘Pages:’, ‘twentyeleven’ ) . ‘</span>’, ‘after’ => ‘</div>’ ) ); ?>
    </div><!– .entry-content –>
    <footer class=”entry-meta”>
    <?php edit_post_link( __( ‘Edit’, ‘twentyeleven’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
    </footer><!– .entry-meta –>
    </article><!– #post-<?php the_ID(); ?> –>

Viewing 15 replies - 1 through 15 (of 18 total)
  • u could simply edit ur css like
    .entry-title {
    display: none;
    }

    or visibility: hidden;

    sometimes u cn use text-intent: 99999999px

    but, if u dont worry bout seo u could simply delete

    <h1 class=”entry-title”><?php the_title(); ?></h1>

    πŸ™‚

    Thread Starter dj87

    (@dj87)

    Will that disrupt anything else on my site,Im kinda scared to remove anything.would i be able to replace it again if it doesnt work

    if it doesnt work u’ll loose all ur job

    lol
    just kiddin

    no, it wont. and if does not do what u want, u can put that line again in there

    i strongly suggest u to copy the original code to notepad, if it doesnt work, put it back in place

    Thread Starter dj87

    (@dj87)

    What would seo have to do with it.I see you mentioned that also.
    that should remove from all my pages right or just the home page

    wich title u want to hide? the site title or the post title?

    if u want to hide ur site title in all ur pages, please paste ur header.php here

    Thread Starter dj87

    (@dj87)

    The title on my pages welcome,about,etc..When I go to those pages Id like the title removed above the post I have.Like for instance on my front page which is my welcome page .It says welcome above the post .I’d like that removed.

    yeah, deleting <h1 class=”entry-title”><?php the_title(); ?></h1> will probably do the job

    Thread Starter dj87

    (@dj87)

    Ican give you a link to my site and youll see what I mean if you would like.

    about SEO… if u simply delete ur h1 title, search engines wont find it
    u could open ur style.css and find
    .entry-title {

    }
    then put
    visibility: hidden;
    like:
    .entry-title {
    visibility: hidden;
    }

    Thread Starter dj87

    (@dj87)

    here is the link to my site ,and as you can see my welcome is above my post on my home page.Should I or shouldnt I remove that?I didnt want to remove my “titles “from my posts,just from my menu pages
    http://www.skinmadesimple.com

    ok, so do this:
    open ur page template file (probably page.php)
    lets change the class name for page titles
    take
    <h1 class=”entry-title”><?php the_title(); ?></h1>
    make
    <h1 class=”entry-title2p”><?php the_title(); ?></h1>

    now go to style.css and
    .entry-title2p {
    visibility: hidden;
    }

    did it work?

    Thread Starter dj87

    (@dj87)

    that code is not on my page.php ,It is on content-page.php,and I cant find entry-title2p on style css. I did find entry title {display:none; I also found error 404 on my main sidebar there what does that mean?

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘How to remove my title from my front page and all pages ANYBODY??’ is closed to new replies.