• Resolved stellaz

    (@stellaz)


    In the older versions of wordpress to remove the title from the pages you simply removed the:

    <h2>” title=”<?php the_title(); ?>”><?php the_title(); ?></h2>

    from several php files.

    Now I can not find this text anywhere? I am using version 3.0.4 and for speed I have used artisteer for a simple website I want up and running quickly.

    Is this a change in WordPress or is Artisteer? causing the problem?

    The page.php file is as follows:

    <?php
    get_header();
    
     if (have_posts()) {
        while (have_posts()) {
            art_post();
            comments_template();
        }
     } else {
        art_not_found_msg();
     }
    
    get_footer();

    Thanks in advance.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Look in your other theme files, like header.php. The change you need to make is not in the core WordPress files.

    Problem might be that Artisteer – in my experience – doesn’t typically create standard WP themes.

    Thread Starter stellaz

    (@stellaz)

    Thanks yes just found the answer:

    It creates a folder called templates and here is a file called post_header.php – i found this elsewhere but change the code:

    <?php if(is_page()) : ?>
    	<h2 class="art-postheader" style="display:none !important;">
    		<a>" rel="bookmark" title="<?php echo $post_link_title; ?>"><?php echo $post_title; ?></a>
    	</h2>
    <?php else : ?>
    	<h2 class="art-postheader">
    		<a>" rel="bookmark" title="<?php echo $post_link_title; ?>"><?php echo $post_title; ?></a>
    	</h2>
    <?php endif; ?>

    It is an artisteer issue not wordpress. Thanks for the respose though.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove page titles in version 3?’ is closed to new replies.