Title: dancigers's Replies | WordPress.org

---

# dancigers

  [  ](https://wordpress.org/support/users/dancigers/)

 *   [Profile](https://wordpress.org/support/users/dancigers/)
 *   [Topics Started](https://wordpress.org/support/users/dancigers/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dancigers/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dancigers/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dancigers/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dancigers/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dancigers/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000730)
 * Changed it to front_page and it worked! Zoonini and Alchymth, thank you very 
   much!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000729)
 * OK, thanks so much! VERY close now. using this:
 *     ```
       <?php if (!is_home()): ?>
   
       your h1 line goes here
   
       <?php endif; ?>
       ```
   
 * the h1 does not display on my Blog page. However, I’d like this feature on my
   static front page rather than the blog page (I guess in the code “home” is still
   the blog). In the above code, how should I re-name the “home” part to indicate
   my static front page?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000719)
 * And here is the page.php code:
    [http://pastebin.com/u/brucemadbox](http://pastebin.com/u/brucemadbox)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000715)
 * I’m just using the wordpress option to use a static page as the homepage, no 
   special templates… As far as I can tell, the only thing generating the h1 tag
   is the CSS sheet. I’m using the [Modern theme](http://www.ulfpettersson.se/design/modern/)
   and this theme comes with no home.php and the header.php is blank. There is a
   page.php, which is pasted above. I’ll paste the css into a pastebin…
    [http://pastebin.com/u/brucemadbox](http://pastebin.com/u/brucemadbox)
   hope this helps, and thanks again.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000702)
 * If helpful, the site is [http://markdancigers.com](http://markdancigers.com).
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000701)
 * Zoonini,
    Couldn’t quite figure out what to put in the “h1 line goes here” part
   of the code. Here is the code to my page.php. Seems to be the only template file
   at work; the header.php is blank.
 * _[Code moderated as per the [Forum Rules](http://codex.wordpress.org/Forum_Welcome).
   Please use the [pastebin](http://wordpress.pastebin.com/)]_
 * Thanks again for any help!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to hide the header h1 in only my front page?](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/)
 *  Thread Starter [dancigers](https://wordpress.org/support/users/dancigers/)
 * (@dancigers)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/how-to-hide-the-header-h1-in-only-my-front-page/#post-2000699)
 * Great, thanks so much for the reply. I will try to PHP code solution: using that
   code in the CSS, the H1 header doesn’t display on all pages. Will report back
   with results…

Viewing 7 replies - 1 through 7 (of 7 total)