• I have a WordPress 3.0 theme that was created using Artisteer 2.5. I don’t want to display the Page Title on the page. Before creating a 3.0 theme, I was able to edit the page.php file by removing the following code:

    <h2 id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=’Permanent Link to “<?php the_title(); ?>”‘><?php the_title(); ?></h2>

    This worked.

    But I can’t find this code in the new 3.0 theme. This is the page.php I’m working on:

    [Large code excerpt removed by moderator. Per forum rules, please use the pastebin for all large code excerpts. It works better anyway.]

    Could you tell me how to modify this page.php file to remove the title from the page?

    Thanks,

    Charles

Viewing 1 replies (of 1 total)
  • In page_title.php replace all existing code with the following:

    <?php
    if (is_page()) {
    } else {
    echo '<h2 class="art-postheader">';
    echo '<a href="';
    echo $post_link;
    echo '" rel="bookmark" title="';
    echo $post_link_title;
    echo '">';
    echo $post_title;
    echo '</a></h2>';
    }
    ?>

    There sure are some significant changes with Artisteer 2.5 where lots has changed since version 2.4.

Viewing 1 replies (of 1 total)
  • The topic ‘Help With Static Pages’ is closed to new replies.