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
Admin
Numbers:
Use Custom Menu to define what goes on into the menu. Appearance > Menus.
Jxff:
Most (if not all) WordPress e-commerce plugins have their own templating system that goes right into the content area of any theme. I haven’t tried any e-commerce plugins with the Graphene theme before, but I’ve been using the WP-e-commerce plugins for several times previously for other clients with custom-built themes. It’s buggy as hell, and difficult to customise without touching the plugin’s core code, but so far IMHO it’s the best e-commerce plugin we have so far for WordPress.
Admin
Even if the size is greater than 150×150? E.g. something like 200×300 should be resized properly to 150×150 by WordPress upon upload.
Admin
Hurm..there’s a mistake in the nl_NL translation file. Try downloading the latest language pack for the theme here: http://www.khairul-syahir.com/wordpress-dev/graphene-theme#languages
Admin
In reply to: I don't want to display subpages excerpt on parent page…
March 9, 2011 at 5:41 am #12833Add this code in your child theme’s functions.php file:
function graphene_child_pages_order(){
$args = array(
'child_of' => $post->ID,
'sort_column' => 'menu_order',
'hierarchical' => 0,
'parent' => $post->ID,
'post_type' => 'page',
'post_status' => 'publish'
);
return $args;
}
add_filter('graphene_child_pages_args', 'graphene_child_pages_order');Admin
In reply to: small bug: The option 'Hide feed icon' becomes enabled when saving custom css
March 9, 2011 at 5:38 am #13154Thanks for highlighting this! Fixed.
Admin
Just create an empty category.php file in your child theme folder.
Admin
This is usually caused by an unclosed
<div>element in your page. Try to find if there’s any unclosed<div>and close it using</div>.Admin
Thanks for highlighting that! Fixed it.
Admin
Just use your browser search function (accessible by CTRL + F usually) to search for
.entry-content p.
