Takao Utsumi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Graphy] Graphy Main Header IssuesDo you mean that you’d like to display the different image in the blog posts index page?
If so, please set the different image to the header image. It is displayed in the blog posts index page.Forum: Themes and Templates
In reply to: [Graphy] Graphy Main Header IssuesHi 3one2,
Do you use the static front page? If so, please set the featured image instead of the header image.
http://themegraphy.com/documents/graphy/#pages
The header image is displayed in the blog posts index page.If the header image is not displayed in the blog posts index page, please let me know the URL of your site.
You can also use the support form.
http://themegraphy.com/support/Forum: Themes and Templates
In reply to: [Graphy] Profile widget problemHi sagerosie,
This is the instruction.
1. From Media > Add New, upload your profile image.
2. From Media, click the image and copy the URL.
https://codex.wordpress.org/Media_Library_Screen#Attachment_Details
3. Then, paste the URL to “Profile Image URL”.Forum: Themes and Templates
In reply to: [Graphy] Read more tags on category pagesPlease change the line in style.css
Before:
.post-grid-list .entry-summary p { margin-bottom: 0; }After:
.post-grid-list .entry-summary p { margin-bottom: 1.6em; }Forum: Themes and Templates
In reply to: [Graphy] Edit footer text?Yes, you can insert a link.
Forum: Themes and Templates
In reply to: [Graphy] Edit footer text?Please change the following line in footer.php.
Before:
© <?php echo date( 'Y' ); ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>After:
© <?php echo date( 'Y' ); ?> <a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a> All rights reserved.If you upgrade to Graphy Pro, you can edit the footer text in the Customizer.
http://themegraphy.com/wordpress-themes/graphy/#proForum: Themes and Templates
In reply to: [Graphy] Remove white spaces top & bottom?Hi Setzfehler,
Please change
margin-bottomof.content-areaand.sidebar-arealike this..content-area, .sidebar-area { margin-bottom: 40px; }You can find the line in 528 of style.css.
Forum: Themes and Templates
In reply to: [Graphy] How to make photos full widthHi jenniecreates7,
I think it is caused by Jetpack’s Photon.
Please try to change functions.php line 23 as follows.Before:
$content_width = 700;
After:
$content_width = 1100;Forum: Themes and Templates
In reply to: [Graphy] German translationHi there,
I added German language file from Graphy 2.0.2.
If there are any problems, please let me know.Forum: Themes and Templates
In reply to: [Graphy] wp_dequeue_script() Graphy navigationFrom Graphy 2.0.2, you can hide the main navigation (and dequeue navigation.js) in the Customizer. If you’d like to hide the main navigation, I recommend you to use it.
http://themegraphy.com/documents/graphy/#customization-primaryIf you’d like to dequeue only navigation.js, please write this code to functions.php.
function graphy_remove_scripts() { wp_dequeue_script( 'graphy-navigation' ); } add_action( 'wp_enqueue_scripts', 'graphy_remove_scripts', 20 );Forum: Themes and Templates
In reply to: [Graphy] Read more tags on category pagesHi raphlaurens,
On category pages, content-list.php is used. So please customize it like this.
Before:
<p><?php echo graphy_shorten_text( get_the_excerpt(), 160 ); ?></p>After:
<?php the_content(); ?>If you’d like to show category pages in the same way as the front page, please copy content.php to content-list.php.
Forum: Themes and Templates
In reply to: [Graphy] German translationYes.
Forum: Themes and Templates
In reply to: [Graphy] German translationPlease create functions.php and add this code.
function my_child_theme_setup() { load_child_theme_textdomain( 'graphy', get_stylesheet_directory() . '/languages' ); } add_action( 'after_setup_theme', 'my_child_theme_setup' );For more information, please see this page.
https://codex.wordpress.org/Child_Themes#InternationalizationForum: Themes and Templates
In reply to: [Graphy] German translationYes. To avoid that, please use a child theme.
Forum: Themes and Templates
In reply to: [Graphy] German translationHi controlc.de,
Please rename de.mo to de_DE.mo.