Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Well, I’m more inclined to think that the Twitter widget should have been more intelligent! Rest assured though that it will be in the next update.
Admin
Well, the Twitter widget is set to display 5 tweets by default, but you only have 1 tweet, hence the script encounters an error. Either set the widget to just display 1 tweet, or tweet more!
Admin
URL to your site?
Admin
Gah..this is caused by a bug that managed to slip through for version 1.5 release. See my post here: https://forum.graphene-theme.com/graphene-support/what-happened-to-my-color-settings#post-8162
Admin
Admin
Quote:They were both entered into the sidebar html through editor both before, and after the update.Do you mean that you’ve entered the codes directly into the theme’s
sidebar.phpfile using the WP Admin > Appearance > Editor page? If yes, then of course the changes would be gone when you update the theme, since WordPress replaces all of the theme’s files with the updated ones.If you wish to keep your customisations when you update the theme, make sure you implement the customisations by using a child theme.
Admin
1. Create a child theme.
2. Create a
functions.phpfile inside your child theme.3. Insert this code into the
functions.phpyou just created:<?php
add_image_size( 'custom-slider-thumb', 150, 150 );
function custom_slider_thumb(){
return 'custom-slider-thumb';
}
add_filter( 'graphene_slider_image_size', 'custom_slider_thumb' );
?>Change the dimensions to whatever you like (I used 150×150 pixels in the code above).
Admin
By default, homepage will diplay your 10 latest posts with their excerpts. These are all controlled by WordPress, not the theme.
If you want to set up a separate page to be used as the blog listing page, take a look at this: http://codex.wordpress.org/Creating_a_Static_Front_Page
Admin
It should still work. Where did you put those codes previously?
Admin
In reply to: Custom header for a specific post (or single post)
September 29, 2011 at 10:01 pm #17298Just set a Featured Image that is equal to or greater than the header dimension for that post, and the theme will use that featured image as the header instead when that post is viewed.
