I have a static page as home page.
How do I remove the <h1 class="entry-title"> ONLY from that page (in home and not if you visit that page "normally" and not as home page)?
I use the TwentyEleven theme.
Thanks in advance guys! :)
I have a static page as home page.
How do I remove the <h1 class="entry-title"> ONLY from that page (in home and not if you visit that page "normally" and not as home page)?
I use the TwentyEleven theme.
Thanks in advance guys! :)
Do not edit the Twenty Eleven theme. It is the default WordPress 3.2 theme and having access to an unedited version of the theme is vital when dealing with a range of site issues.
Create a child theme for your customisations. Once your child theme is active, we should be able to help with the customisation.
Sorry, I omitted to say that - yes - I'm already using a TwentyEleven child theme. :P
Copy content-page.php into your child theme and then try changing <h1 class="entry-title"><?php the_title(); ?></h1> to:
<?php if ( !is_front_page() ) :?><h1 class="entry-title"><?php the_title(); ?></h1><?php endif;?>
Yeah!! Works! Thanks a lot! ;)
Hey, was just looking to do this as well, Thanks Esmi!!!!
This topic has been closed to new replies.