Blog Posts Missing Title

Is there any way to show the title of a blog post independant of the master subheader setting? I assume it is because I am using the setting Theme Settings: Subheader | Visibility - Hide Subheader - the actual post is not showing any of the categories, title detail etc. It only shows a heart icon. I'm using the BeTheme. Post options are not set to hide any element. Turning the above option to 'default' does make the title appear but ruins the design of the rest of the site.

I tried adding a new 'single.php' in the child theme root, see below code, but the .php file did not pick up, I assume I need to add some code into the functions file to make this file work too but wasn't sure this was the right file to edit anyway?

<div class="sections_group">
            <?php
                while ( have_posts() ){
                    the_post();   
                    get_template_part( 'includes/content', 'single' );
                }
            ?>
        </div>

Comments

Sign In or Register to comment.