Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey bouwman,

    I had the same problem. If you want to get rid of the page title for each page, go into the page-template.php file. When there, look for the snippet of code that includes “page-title.” Either delete that snippet or comment it out <!– –> to remove the page title from each page.

    Hope this helps.

    Hey,
    You can follow above solution, but it’s always good to keep the title.
    You can also hide the Page Titles using CSS.

    Find the CSS class used by your title using Firebug and setup a display:none; for that class. For example your site’s page titles can be hidden like this,

    .content_box h2 {
    display: none;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to hide page title?’ is closed to new replies.