Takao Utsumi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Graphy] Change the word “MENU” in the mobile viewHello,
I recommend that you use translation plugin.
https://wordpress.org/plugins/loco-translate/
Please translate “Menu” into your preferred word.Regards,
Forum: Themes and Templates
In reply to: [First] Mainpage titleHi,
Please add this code to Custom CSS or Additional CSS.
.home .entry-header { display:none; }Forum: Themes and Templates
In reply to: [First] Image header doesn’t showDo you use static front page? If so, please set the featured image instead of the header image.
http://themehaus.net/documents/first/#pages
The header image is displayed on the blog index page.Forum: Themes and Templates
In reply to: [First] Using First to make a child themeHello,
Of course, you can make the child theme. You don’t need to show the credit in the footer. Because when users use the child theme, First is also downloaded.
Thanks,
Forum: Themes and Templates
In reply to: [Graphy] Nice Theme – Graphy by Themegraphy !Hello,
Why do you copy all postings into Word?
If you’d like to backup the posts, I recommend that you use an backup plugin.
http://www.wpbeginner.com/plugins/7-best-wordpress-backup-plugins-compared-pros-and-cons/Forum: Themes and Templates
In reply to: [Graphy] Markup author & update deleted GraphyHi,
Does the errors means “Missing: author” and “Missing: updated”? If so, it is right because there are no post date and author. However, it will not affect SEO, so don’t worry about it.
Forum: Themes and Templates
In reply to: [Graphy] Number of sites allowed with one purchaseHello,
Graphy Pro is licensed under GPL2, so you may use them for an unlimited number of personal/business sites.
You can upload the same zip file to the second site. For more information, please see the documentation.
http://themegraphy.com/documents/graphy/Forum: Themes and Templates
In reply to: [First] Hide featured image from entryHello,
Please add this code to Customize > Custom CSS.
—–
.single .post-thumbnail {
display:none;
}
—–Forum: Themes and Templates
In reply to: [Graphy] link in new tabHello,
Graphy doesn’t have that kind of function.
In the demo, target=”_blank” works. (Link to Unsplash)
http://demo.themegraphy.com/graphy/2016/03/05/standard-post-with-images/
Can I see your site?I fixed the issue.
Forum: Themes and Templates
In reply to: [Graphy] Latest WordPress update and languageI see. Please download the following file.
/wp-content/themes/graphy/languages/de_DE.moThen, upload it to the following folder.
/wp-content/languages/themes/Sorry for inconvenience to you.
Thank you for your feedback. I confirmed the issue.
I will fix the issue in the next update.Forum: Themes and Templates
In reply to: [Graphy] Latest WordPress update and languageThank you for your feedback. I confirmed the issue and I will fix it.
If you’d like to fix the issue immediately, please delete the following file.
/wp-content/languages/themes/graphy-de_DE.moForum: Themes and Templates
In reply to: [Graphy] Customisation of Header Social LinksHello,
It needs some customization and it’s not so easy.
How can I make sure that this isn’t added?
Please delete the line 982 of style.css.
content: '\f107';How can I add a link to another language (e.g. English) using for instance a flag (e.g. UK flag) instead of the regular link icon?
Please add this code to Custom CSS.
xxxxis the menu id. You can find it by source code..menu-item-xxxx a { display: inline-block; background: url( "your-flag.png" ) no-repeat; width: 24px; height: 24px; vertical-align: bottom; }Plain text, such as “English” would also be acceptable.
Please change the line 32 of header.php.
If you change the line, other menus also show text.Before: <?php wp_nav_menu( array( 'theme_location' => 'header-social', 'depth' => 1, 'link_before' => '<span class="screen-reader-text">', 'link_after' => '</span>' ) ); ?> After: <?php wp_nav_menu( array( 'theme_location' => 'header-social', 'depth' => 1 ) ); ?>Forum: Themes and Templates
In reply to: [Graphy] Blog pageHello,
Do you mean that you’d like to create a static front page and a blog page? If so, please set a front page and a posts page.
https://codex.wordpress.org/Creating_a_Static_Front_PageIf you’d like to show all posts in a page, please use a plugin or customize the theme.
http://www.wpbeginner.com/wp-tutorials/how-to-display-all-your-wordpress-posts-on-one-page/