• Hi, I want to eliminate the page title on my pages of my site. The site is very very minimal, but I really hate where it says Photos in H1 text.

    Here is my site. http://www.SimpleWisdomDesign.com I created the theme in Artisteer.

    Does anyone know how to get rid of those H1 Page titles?

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • figure out what template is being used for the page…. probably page.php?

    a couple lines under this <div class="art-Post-body">

    you should find the code to delete (or comment out)something like this:

    <h2 class="art-PostHeaderIcon-wrapper">
    <span class="art-PostHeader"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php the_title(); ?></a></span>
    </h2>

    to comment it out (in case you change your mind later) just wrap it like this:

    <!-- <h2 class="art-PostHeaderIcon-wrapper">
    <span class="art-PostHeader"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php the_title(); ?></a></span>
    </h2> -->

    Thread Starter heguru

    (@heguru)

    Rev. Voodoo, that worked. Thanks very much.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Eliminate Page Title’ is closed to new replies.