you can acces to admin user?
Cause is easy fix if you can… You must go to themes/editor and choose “header.php” to edit it.
only must find title tags and add the title inside… change tihs
<title></title>
into this
<title> <?php echo the_title(); ?> </title>
Maybe you′ll find something between <title> and </title> but, save a backup copy and edit it… it’s obviously not working.
I guess they use some “title builder”, it’s a common practice… Than display the title and some additional info (like blog name and stuff like that) and maybe has some bug.
I made a simple title builder, it’s not perfect, but is mine ^^ hahahaha is this…
<title>
<?php
if (is_archive()) { wp_title(''); echo ' Archives '; }
elseif (is_search()) { echo 'search results for "'.wp_specialchars($s).'"'; }
elseif ( is_front_page() ) { bloginfo('name'); echo (' - '); bloginfo('description'); }
elseif ( !(is_404()) && (is_single()) || (is_page())) { the_title(); echo (' - '); bloginfo('name'); }
elseif (is_404()) { echo 'Error 404'; }
if (is_home()) { bloginfo('name'); echo (' - Blog'); }
if ($paged>1) { echo ' - pàgina '. $paged; }
?>
</title>
Feel free for copy and paste on your header file if you want, it should work propperly