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
Hi Amirkg,
I am currently adding full RTL support for the theme, and I think it’s almost there. However, I do need to test it with an actual RTL language pack and WordPress install.
Would you be interested to test the pre-release version of the theme that includes support for RTL languages?
Admin
You don’t need to remember the default slider height. To use the default value, simply leave the slider height option empty and the theme will use the default value of 220px.
Admin
In reply to: Current page highlighting broken after using own menu
December 31, 2010 at 2:16 am #11846Page URL please
Admin
Oh, you were talking about the author bio in single post pages and not the Author page…
OK, I’ve updated the theme’s code so that it’ll display the custom author image instead of gravatar if present. Will be available in the next update.
Admin
Please provide the URL to the page in question so that I can take a look.
Admin
I noticed that there’s an extra
}in your child theme’sstyle.cssfile before the.slider_post img.excerpt_thumb{line. Try removing it.Admin
Make sure you activate your child theme in the WordPress admin.
Admin
Try this instead:
.slider_post img.excerpt_thumb{
display:none;
}For me, the best way to add excerpt image is to use the theme’s
graphene_before_post_contentaction hook, though this may be difficult for you to achieve if you’re not familiar with PHP.Admin
Basically there’s two things that you need to do:
1. Define a new thumbnail size using the
add_image_size()function inside your (child theme’s)functions.phpfile.2. Modify the theme’s
functions.phpfile to use the new thumbnail size. In version 1.1.2, modify line 944 to look like this:<?php echo graphene_get_slider_image($post->ID, array(150, 150, true)); ?>Change the values in the
array(150, 150, true)part to reflect the width and height of the new image size that you have created in Step 1.When you do this, all new pictures uploaded will have a thumbnail created according to the new image size you defined, in addition to the WordPress’ default image sizes, which you can then use as the size for the image slider.
Admin
If you would just like to remove the blue background and keep the text, add this code to your
style.cssfile:.post .date{
background:none;
}Note that removing the blue background will cause the month text to not be visible (since it’s white on a white background). You will also need to change the month colour in that case.
If you want to remove the entire post date, just tick the Hide post date option in Graphene Display options page.
