• Most of my website pages are showing duplicate H1s, and I don’t like the stylization/position of the entry header title. How do I remove it/make only one H1 on the page?

    Also, how can I remove the right column contact form on specific pages without Sydney Pro and fix the spacing between the header and the form (see example page)?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hi @averycohen,

    To remove the default page’s heading part. You can edit the corresponding file (that is content-page.php) with a child theme.

    Firstly you’ll need to create a child theme (if you haven’t had it yet). Replicate content-page.php file from parent theme.

    In your child theme’s content-page.php, locate to this code block

    <header class="entry-header">
            <?php the_title( '<h1 class="title-post entry-title" ' . sydney_get_schema( "headline" ) . '>', '</h1>' ); ?>
    </header><!-- .entry-header -->

    and remove it.

    Read this comprehensive documentation about child theme for your additional reference: https://developer.www.ads-software.com/themes/advanced-topics/child-themes/.

Viewing 1 replies (of 1 total)
  • The topic ‘How to remove entry titles/duplicate H1s’ is closed to new replies.