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
Yes, you can edit the thumbnail for individual images using the same media uploader you use to upload the image. It’s a WordPress feature, but it’s a bit hidden. Try poking around a bit it do a search in Google.
—
Sent via Android using Tapatalk
Admin
Just move your widgets to the other sidebar.
—
Sent via Android using Tapatalk, please excuse my brevity.
Admin
In reply to: Excerpt of a page generates bad HTML for "Continue reading"
February 6, 2012 at 11:24 am #23243I’ve modified the function so that it’ll try to balance the html tags in the excerpt. Will be available in the next update.
—
Sent via Android using Tapatalk
Admin
Can’t help you if you didn’t provide the URL to your site….
—
Sent via Android using Tapatalk
Admin
In reply to: after update, excerpt shows on entire lenght of slider and homepage pictures squashed
February 6, 2012 at 9:41 am #233001. Not sure what you mean by “small corner on the left”.
2. You need to rebuild the thumbnail images. I would suggest the AJAX Thumbnail Rebuild plugin.
Admin
You might want to read this post before upgrading to Graphene 1.6:
http://www.khairul-syahir.com/topics/web-dev/2012/graphene-1-6-what-to-know-before-upgrading.html
As for the facebook connect, I’m afraid that’s outside the scope of our theme and support. But you may want to try this plugin:
http://wordpress.org/extend/plugins/simple-facebook-connect/
Admin
Please take a moment to read the forum guidelines here, especially the bit under “Explain what problem you’re having”:
Admin
Looks like you have a custom
header.phpfile in your child theme. Change this particular bit of code:<?php graphene_title(); ?>to this:
<?php wp_title( '' ); ?>Also, you may want to read about the downside of replacing the theme’s template files in a child theme here (under the “Special consideration” heading):
Admin
Read the post that I linked to above, especially the section on “What to watch out for”. You’ll notice that the positioning of the widget areas have been changed to provide a more consistent placement across the different column modes.
Admin
There’s a mistake in the code. Instead of this:
function custom_excerpt_length($length) {
return 40; // Change this to whatever you want.
add_filter('excerpt_length', 'custom_excerpt_length');
}it should be this:
function custom_excerpt_length($length) {
return 40; // Change this to whatever you want.
}
add_filter('excerpt_length', 'custom_excerpt_length');
