Viewing 9 replies - 1 through 9 (of 9 total)
  • Amusing you are using a child theme.

    Do you mean you want to remove the H1 title? If so this might not be such a good idea for SEO reasons but if this is what you want to do, it is in your content-blog.php file. Remove:

    <h1 class="entry-title">
    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>">
    <?php
    if ( get_the_title() ){ $title = the_title('', '', false);
    echo evltruncate($title, 40, '...'); }
     ?></a> </h1>

    @kaniamea – what happens to this when the theme is updated?

    Yes, edited my post already 🙂

    Thank you – but really, please stop advising people to modify theme files directly – it’s really very unfortunate when people lose a lot of work when the theme is updated.

    Agreed.

    Thread Starter leskosek

    (@leskosek)

    Is there any easy way? Without coding?

    Well, this is the easiest way but if you need step by step instructions let me know.

    An easier method is to add a custom CSS plugin and add this there:

    .home .type-post h1.entry-title, .page-template-blog-page-php .type-post h1.entry-title {
       display: none;
    }

    Thread Starter leskosek

    (@leskosek)

    I had in mind something like check option or something similar. It would be nice if you cound provide me step by step instruction. Thank you in advance.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Disable page titles’ is closed to new replies.