Remove Title from homepage

Latest Reply from Matt at 2014-02-17 09:33:28
i'm using your thanksgiving theme. how to remove title from homepage. i've selected static homepage.

thankx,
Hi!
Please find following code in the theloop.php:
<?php  //Title
if (!is_single()&&!is_page()) { ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( $SMTheme->_( 'permalink' ), the_title_attribute( 'echo=0' ) ); ?>" class='post_ttl'><?php the_title(); ?></a></h2>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php }


and replace it with

<?php  //Title
if (!is_front_page()) if (!is_single()&&!is_page()) { ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php printf( $SMTheme->_( 'permalink' ), the_title_attribute( 'echo=0' ) ); ?>" class='post_ttl'><?php the_title(); ?></a></h2>
<?php } else { ?>
<h1><?php the_title(); ?></h1>
<?php }

Leave a reply

Add codeAdd image