Forums

[resolved] Remove page titles in version 3? (3 posts)

  1. stellaz
    Member
    Posted 1 year ago #

    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.

  2. songdogtech
    Member
    Posted 1 year ago #

    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.

  3. stellaz
    Member
    Posted 1 year ago #

    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.

Topic Closed

This topic has been closed to new replies.

About this Topic