Home › Forums › Theme support › I can' insert my logo / Site's name (Urban theme) › Reply To: I can' insert my logo / Site's name (Urban theme)
1. Ok, in this case it’s no wonder that there is no logo, because only if is saved in the theme options the theme can show it. What happen if you change other theme options, after refreshing also these fields are blank? Do you think you can send us ( info @ 7theme . net ) a link and a login to your website, then we can take a look at the problem.
2. We never set a page title for our theme demos, because they are only demos 🙂
I asked our developer and the problem is WordPress itself, on the front-page WordPress don’t show the page title. You can add this code to your functions.php file to add a filter to the page title function:
add_filter( 'wp_title', 'baw_hack_wp_title_for_home' );
function baw_hack_wp_title_for_home( $title )
{
if( empty( $title ) && ( is_home() || is_front_page() ) ) {
return __( 'Home', 'theme_domain' ) . ' | ' . get_bloginfo( 'description' );
}
return $title;
}