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
What plugin are you using to create the custom page title?
Admin
That’s great! Please go ahead and mark this topic as resolved then.
Admin
In reply to: How can I create a sidebar for a non front page different then the others?
February 27, 2013 at 7:28 am #36179Try using the Widget Logic plugin.
Admin
You can get the buttons code from here:
https://www.addthis.com/get/sharing?frm=hp#.US204Ge89GM
Grab the code and then paste it into the Graphene theme’s social sharing options for default placement, or into a text widget if you want to place it anywhere else using widget areas.
Admin
In reply to: Multilingual posts category problem after updating to 1.8.3
February 27, 2013 at 7:24 am #36163OK, we’ll fix this in the next version. If you know how to checkout from SVN, you can grab the latest development version of the theme from here: https://code.google.com/p/graphene/
Admin
Quote:I got a problem with my graphene slider on the home page of my web site : http://www.aircom.frThe navigation buttons which should be shown under the slider (little circles) disappeared! I know they are still there because when you move the mouse over, you can see the cursor change into a hand, that indicate there is a link….
Any idea why I can’t see them anymore?
You’ve copied the entire codes from the theme’s
style.cssfile into your child theme’sstyle.cssfile. You shouldn’t do this, as it’ll cause a lot of issues, including the one you described above.Quote:I also have an other quastion : how to change the size of the post title in the slider?You’re not using a full-sized slider, hence the code you put in won’t work. Try this:
.slider_post h2 a,
.slider_post h2 a:visited {
font-size: 10px;
}Admin
Marking thread as resolved. You can do this yourself as well.
Admin
If you didn’t put the link in yourself, chances are your site has been compromised. See this page for suggestions on what steps to take:
Admin
Add this to you child theme’s functions.php file:
<?php /* Only add this line if you're working on an empty functions.php file */
/**
* Manually set different header image for individual pages
*/
function graphene_custom_header_image( $img_url ){
/* Replace page-slug with the actual page slug */
if ( is_page( 'page-slug' ) ) return 'http://www.new-image.url';
return $img_url;
}
add_filter( 'graphene_header_image', 'graphene_custom_header_image' );Admin
Change all
& #039;with single quote'.
