Removing Post titles from static pages

HomeForumsTechozoicRemoving Post titles from static pages

This topic has 1 voice, contains 2 replies, and was last updated by   254 days ago.

Viewing 3 posts - 1 through 3 (of 3 total)
Author Posts
Author Posts
August 22, 2011 at 12:12 pm #1650

I am making a site using Techozoic Fluid 1.9.4.

I want to remove the post titles on the static pages and keep them on the blog. I assume I have to change or add something in the page.php – somewhere around these lines

?> <h1 class="post_title">
<?php wp_title(”, ‘display:none’);
?> </h1>

What to change? Or should I change something somewhere else?

Thanks in advance

August 30, 2011 at 5:18 am #1651

Jeremy Clark

Your correct, change these lines

<div id="content" class="<?php if ($tech['single_sidebar'] == "Yes" && $tech_disable_sidebar != "on") { echo "narrow"; }else {echo "wide";}?>column">
<?php if (strlen(wp_title(”, false))>0) {
?> <h1 class="post_title">
<?php wp_title(”, ‘display’);
?> </h1>
<?php }
if (have_posts()) {

To this

<div id="content" class="<?php if ($tech['single_sidebar'] == "Yes" && $tech_disable_sidebar != "on") { echo "narrow"; }else {echo "wide";}?>column">
<?php
if (have_posts()) {
September 5, 2011 at 12:09 pm #1652

Thank you so much Smile

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.