• Resolved sneed

    (@sneed)


    Since I update Base WP, I can no longer remove the page title by checking off “Remove Page Title” on the home page. How do I fix this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Looks like the theme author removed some code.

    In your Appearance > Editor > Content-Page.php > Look for this code.

    Current Code:

    <?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>

    Change to this:

    <?php if (get_post_meta( get_the_ID(), 'igthemes-page-title', TRUE ) !='yes') { the_title( '<h1 class="entry-title">', '</h1>'); } ?>

    Now make a note that if you edit this code and the theme is updated again your edit will be lost unless the theme author adds the code back in on the update.

    If you have a child theme you’ll be fine.

    Theme Author iografica

    (@iografica)

    Hi, we will fix the problem as soon as possible.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove Page Title 11/14/15’ is closed to new replies.