Hi! Thank you for wonderful themes.
I’d like to ask about “interface_header_title” of Interface ver.1.3.
“Interface_header_title” in header part of posts (single posts, category pages, tag pages) disappeared after updating.
As I searched what causes this, I found the lines below in header-extensions.php:
<?php if( is_page() ) {
if( is_page_template(‘page-templates/page-template-blog-full-content.php’) || is_page_template(‘page-templates/page-template-blog-image-large.php’) || is_page_template(‘page-templates/page-template-blog-image-medium.php’) || is_page_template(‘page-templates/page-template-business.php’) || is_page_template(‘page-templates/page-template-contact.php’ )) { ?>
<h1 class=”page-title”><?php echo interface_header_title(); ?></h1>
<?php }else { ?>
<h1 class=”page-title” id=”entry-title”><?php echo interface_header_title(); ?></h1>
<?php }
} ?>
The else{} is for the second if{}, and there is no one more else{} for the first if{}.
Maybe this causes the lack of “Interface_header_title” in header part of posts…
So, I would like to ask if this is what is intended to be.
Thank you for reading, and have a nice day.(^^)/