• Resolved worldsnapper

    (@worldsnapper)


    Hi,

    Can anyone advice which part of this page.php code I need to remove/change to make the page title disappear? I have tried removing the line in bold but the title still are visible!

    <?php the_post(); ?>
    <?php get_header(); ?>
    <?php if (get_option(‘professional_integration_single_top’) <> ” && get_option(‘professional_integrate_singletop_enable’) == ‘on’) echo(get_option(‘professional_integration_single_top’)); ?>

    <div id=”content-top” class=”top-alt”></div>
    <div id=”content” class=”clearfix content-alt”>
    <div id=”content-area”>
    <?php include(TEMPLATEPATH . ‘/includes/breadcrumbs.php’); ?>

    <?php if (get_option(‘professional_integration_single_top’) <> ” && get_option(‘professional_integrate_singletop_enable’) == ‘on’) echo(get_option(‘professional_integration_single_top’)); ?>

    <div class=”entry clearfix post”>
    <h1 class=”title”><?php the_title(); ?></h1>

    <?php if (get_option(‘professional_page_thumbnails’) == ‘on’) { ?>

    <?php $thumb = ”;
    $width = 184;
    $height = 184;
    $classtext = ”;
    $titletext = get_the_title();

    $thumbnail = get_thumbnail($width,$height,$classtext,$titletext,$titletext);
    $thumb = $thumbnail[“thumb”]; ?>

    <?php if($thumb <> ”) { ?>
    <div class=”thumb alignleft”>
    <?php print_thumbnail($thumb, $thumbnail[“use_timthumb”], $titletext, $width, $height, $classtext); ?>
    <span class=”overlay”></span>
    </div> <!– end .thumb –>
    <?php }; ?>

    <?php }; ?>

    <?php the_content(); ?>
    <?php wp_link_pages(array(‘before’ => ‘<p>‘.__(‘Pages’,’Professional’).’: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
    <?php edit_post_link(__(‘Edit this page’,’Professional’)); ?>

    </div> <!– end .entry –>

    <?php if (get_option(‘professional_integration_single_bottom’) <> ” && get_option(‘professional_integrate_singlebottom_enable’) == ‘on’) echo(get_option(‘professional_integration_single_bottom’)); ?>

    <?php if (get_option(‘professional_show_pagescomments’) == ‘on’) comments_template(”, true); ?>

    </div> <!– end #content-area –>

    <?php get_sidebar(); ?>

    </div> <!– end #content –>
    <div id=”content-bottom” class=”bottom-alt”></div>

    <?php get_footer(); ?>

    Thanks!

Viewing 1 replies (of 1 total)
  • do mean at top where the header image is
    if so

    you need to go in style.css and look for
    #header #site-title a{

    add
    display:none;

    and the same for description
    just below

    and save this is what i have on mine and am using twentyten theme.

    #header #site-title a{
    color: #555555;
    float: left;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 0 2px 1px #ffffff;
    display:none;
    }
    #header #site-description{
    float: right;
    font-style: italic;
    margin: 10px 0;
    display:none;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Removing Page Titles’ is closed to new replies.