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
Quote:As soon as I reactivated the original copy of Graphene, the password problem came back. So I renamed it again and installed a fresh copy – everything is working again.Mystery to me…
Do you by any chance still have the problematic copy?
Admin
Add this to your child theme’s functions.php file:
<?php
function graphene_frontpage_posts_args( $args ){
$args['post_type'] = array('post', 'page');
return $args;
}
add_filter('graphene_frontpage_posts_cats_sticky_args', 'graphene_frontpage_posts_args');
add_filter('graphene_frontpage_posts_cats_args', 'graphene_frontpage_posts_args');
?>Admin
It’s probably much easier to upload the image to your host and use that instead. Or if you’re automating posts from RSS feed, you can just simply set the width of the image and leave height to auto via CSS.
Admin
What’s the value you have in Graphene Options > Slider > Slider speed? If there’s no value there, try inserting 7000.
Admin
You can simply set the first image that you use in the post as the featured image.
Admin
frusps, can you list the plugins you have installed?
Admin
Have you tried the “Graphene post-specific options”?
Admin
You just need to update WordPress to at least version 3.1. It should be pretty safe.
Admin
You might want to give a read through this section on the theme’s (work-in-progress) wiki.
Admin
It’s even easier than that. Just add this to your child theme’s functions.php file:
<?php
function graphene_get_default_headers() {
return 'None';
}
?>
