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
If you’re using WordPress version 3.2 and above, you should already have an “admin bar” that displays the logged in user’s name.
Admin
I’ve downloaded the language files, thanks!
Would you like to be involved in translating the theme into Swedish for future updates? If you do, join the Graphene Theme Developers, Testers, and Translators group, and you’ll receive notifications when a new development version is available for testing/translation.
Also, let me know your website’s URL so that I can link back to you in the theme’s page.
Admin
See if this topic answers your question: https://forum.graphene-theme.com/graphene-support/menu-tab-font-colors
Admin
Yes there is. You can see the demo page here: http://dev.khairul-syahir.com/wordpress/graphene/features-and-functionalities/helpful-404-page/
Admin
Pretty much. You’ll get the notification when there’s an alpha/beta version available for testing.
Admin
Was about to ask you lol. Sign up at the Graphene Theme Developers, Testers, and Translators group to get involved with beta testing.
Admin
In reply to: HELP – I broke my Secondary Menu – two many pages – any LIMIT?
October 23, 2011 at 12:39 am #18600Quote:how can i edit my first post to remove my email?You can’t edit the post after 1 hour of posting it, but I’ve removed the email for you 🙂
As for the menu, there seems to be a limit on the number of menu items you can put after all, though it’s related to server config rather than the theme. See this: http://swordfishsoup.co.uk/2011/cant-add-more-menus-to-wordpress-custom-menus/
And this:
https://forum.graphene-theme.com/general-talk/wordpress-menu-limit
Admin
Sure you can, though I’m not sure if you need this line:
@import url("../graphene/style-light.css");The parent theme would have already loaded its own
style-light.cssfile if you enable the light header bars option.Admin
Quote:And on my page, It says I have one pingback, but there is no comment. Would you take a second to explain this to me please? (or Ken)That is correct. A pingback is a separate type of comment. There’s another type of comment called “trackback”, which is kinda similar to a “pingback” but an older version of it. “Comment” is only for comments that visitors enter directly into your website.
See here for more info: http://codex.wordpress.org/Introduction_to_Blogging#Managing_Comments
Quote:Do YOU have any control over how it shows in MY admin panel? Does it just show this way when someone uses a link into my domain (taking the first couple words or soemthing)?No control whatsoever. It just takes an excerpt out of the post near where the link is included, I think.
Admin
Nope it won’t, cause that
style-light.cssfile in your child theme won’t be automatically loaded. Remember that only certain files will be automatically loaded in a child theme.Try adding this to your child theme’s
functions.phpfile:function graphene_extra_styles(){
wp_enqueue_style( 'graphene-child-light', get_stylesheet_directory_uri() . '/style-light.css' );
}
add_action( 'wp_print_styles', 'graphene_extra_styles', 1000 );
