Hi @smegumi!
After enabling Jetpack, can you navigate to Theme Options > Title then ensure that the check box next to “Hide Tagline” is unchecked? That may be the setting that’s hiding your site’s tagline, though the title should remain to the upper right regardless of whether Jetpack’s connected.
Let me know if the above helps with your issue. If not, could you leave Jetpack activated on huuu.wp.xdomain.jp so that I can view the code without the title appearing?
Thanks.
Thread Starter
megumi
(@smegumi)
Hi @siobhyb!
“Hide Tagline” was off.
Title does’nt return.
Is this code?
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="under construction" />
<meta property="og:description" content="Just another WordPress site" />
<meta property="og:url" content="http://huuu.wp.xdomain.jp/" />
<meta property="og:site_name" content="under construction" />
<meta property="og:image" content="https://i1.wp.com/huuu.wp.xdomain.jp/wp-content/uploads/2017/10/スクリーンショット-2017-09-16-4.46.29.jpg?fit=605%2C407" />
<meta property="og:image:width" content="605" />
<meta property="og:image:height" content="407" />
<meta property="og:locale" content="ja_JP" />
<meta name="twitter:image" content="https://i1.wp.com/huuu.wp.xdomain.jp/wp-content/uploads/2017/10/スクリーンショット-2017-09-16-4.46.29.jpg?fit=605%2C407&w=640" />
<meta name="twitter:card" content="summary_large_image" />
thank you.
Hi again.
Here’s a screenshot of what I’m seeing when viewing your site:

You’ll see that I can view the title to the upper left.
The code that you provided in your last reply defines the title that’s displayed when your site is shared to social networks, such as Facebook. Is that where you’re not seeing a title?
Thread Starter
megumi
(@smegumi)
I still do not understand what code I should refer to.
jetpack on/off image
Thank you.
Thank you for the screenshots! I was able to replicate the issue and, after some digging, found that this is a known issue with the Harmonic theme. We have a workaround for you, though. 🙂
The first step is to set up a child theme.
In case you’re unsure, the following guides provide a good introduction to child themes, including steps to set one up:
You could also use a plugin to generate a child theme on your behalf:
https://wordpress.org/plugins/search/child+theme/
After you have set up the child theme, copy the following code to the child theme’s functions.php file:
function harmonic_the_site_logo() {
if ( ! function_exists( 'jetpack_the_site_logo' ) ) {
return;
} else {
jetpack_the_site_logo();
echo '<h1 class="header-title"><a href="' . esc_url( home_url( '/' ) ) . '" rel="home">' . get_bloginfo( 'name' ) .'</a></h1>';
}
}
Your title will display correctly with Jetpack enabled after adding the above code.
Thread Starter
megumi
(@smegumi)
Wow! That’s briliant.
It have made successful.
Thank you for the support and advice.
I’m glad that helped! 🎉 If any extra questions come up then please don’t hesitate to start a new thread on this forum.