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
Are you using the same emaill adress for your user account in WordPress as the one you used to register the gravatar?
Admin
This issue has been addressed in the upcoming version 1.3.
Admin
Did you modify the theme in some way? Your site does not seem to have the theme’s footer. Have you removed or changed the
footer.phpfile in the theme’s folder?Admin
Just make a big enough image, then set it as the background image for your website via WordPress Admin > Appearance > Background. You can set the styling of the background there as well.
Admin
The theme uses gravatar. Register and set up yours here: http://en.gravatar.com
Admin
Try this:
.slider_post_title a, .slider_post_title a:visited{
font-family: Georgia, "Times New Roman", Times, serif;
font-style: italic;
font-weight: bold;
color: #EEE;
text-align: left;
font-size: 48px;
}Admin
Hurm..I haven’t actually considered microformats for the theme..but since you’ve posted it here, I’ve updated the required microformats for
entry-title,updated, and hCardauthorfor the theme. Will be available in the upcoming version 1.3.Admin
Try using the
!importantflag on the CSS rule you defined. For example:color: #ff0 !important;.Admin
In reply to: Need Help: Full Post Content for Sticky Post, Excerpt for Rest
May 18, 2011 at 11:51 am #14095Try adding this into your child theme’s
functions.phpfile:function graphene_full_sticky(){
if (is_sticky()) {
$content = get_the_content();
$content = apply_filters('the_content', $content);
$content = str_replace(']]>', ']]>', $content);
return $content;
}
return get_the_excerpt();
}
add_filter('the_excerpt', 'graphene_full_sticky');And of course, set the posts to display as excerpts on the front page in the theme’s options page.
Admin
Have you tried reinstalling the theme again? It may be that some files have been inadvertently changed. Also, try deactivating your plugins one by one and see if the slider show up.
