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
You can do this using a child theme.
Try placing this code into your child theme’s
functions.phpfile:function naoft_excerpt_filter( $excerpt ){
if ( is_category() ) return '';
else return $excerpt;
}
add_filter( 'the_excerpt', 'naoft_excerpt_filter' );Admin
A few more suggestions:
1. Make the video on the homepage fill the entire width of the content area
2. Disable the “Return to Top”, or change it to just ↑
3. You might also want to balance the number of submenu items for each top-level menu items in the footer.
Admin
In reply to: Updated Graphene and now the screen says updating to 1.0 – WordPress Error
June 20, 2012 at 1:32 pm #29454Try replacing the content of the theme’s
admin/db-updater.phpwith the updated one here:http://code.google.com/p/graphene/source/browse/trunk/graphene/admin/db-updater.php
Admin
Just to mirror my message on the this thread: I will add an option to to add custom tags into the theme’s
<head>element in version 1.8.Admin
OK, I will add an option to to add custom tags into the theme’s
<head>element in version 1.8.Admin
There’s a js error in your site:
document.getElementById("vbulletin_lt_content") is nullThat could be the reason, since the AddThis buttons rely on javascript.
Admin
Moved to Support. Please post in the correct section next time.
To decrease the comment margin, at this either to the Custom CSS option, or to your child theme’s
style.cssfile:#comments .children {
margin-left: 30px;
}Admin
In reply to: Updated Graphene and now the screen says updating to 1.0 – WordPress Error
June 20, 2012 at 3:36 am #29452Topic moved to Support. Please post in the correct section next time.
What was the Graphene version you were upgrading from?
Admin
You should be able to verify your site ownership immediately from Google Webmaster Tools.
Admin
Try this:
#text-5 div.sidebar-wrap {
background: none;
}Each of those widgets have their own IDs, like
#text-5in the code above. You can figure out the ID easily by using Firebug add-on for Firefox. Video intro on Firebug here:http://www.joshlobe.com/2011/10/using-mozilla-firebug-to-inspect-css-files/
