Hi, I can’t change the title into image logo in this theme, is there a way to do that?
I tried the atomic options, couldn’t allow me to do so. So I find the code which control the h1, but I don’t know how to do coding, could you help me please?
here is the code:
<?php
if ( ( of_get_option( ‘header_title_text’, ‘1’ ) && of_get_default( ‘header_title_text’ ) ) || get_theme_mod( ‘logo’ ) ) {
echo ‘<h1 class=”site-title”‘;
if ( of_get_option( ‘header_title_size’, ” ) ) {
echo ‘ style=”font-size: ‘ . of_get_option( ‘header_title_size’) . ‘rem;”‘;
}
echo ‘>’;
if ( get_theme_mod( ‘logo’ ) ) {
echo ‘<img src=”‘ . esc_url( get_theme_mod( ‘logo’ ) ) . ‘” alt=”‘ . get_bloginfo( ‘name’ ) . ‘” />’;
} else {
if ( of_get_option( ‘header_title_text’, ” ) || of_get_default( ‘header_title_text’ ) ) {
echo of_get_option( ‘header_title_text’ , of_get_default( ‘header_title_text’ ) );
}
}
echo ‘</h1>’;