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
In reply to: how to add a facebook icon next to rss icon at the top of theme
October 26, 2010 at 5:57 am #11419@Michael, if you put codes in between backticks (`) in your reply, the codes won’t be parsed.
Admin
In reply to: how to add a facebook icon next to rss icon at the top of theme
October 26, 2010 at 5:54 am #11418Your
functions.phpfile must have an initial opening<?phptag and a final closing?>tag. Try this:<?php
function graphene_social_icons(){ ?>
<a class="facebook_icon"></a>
<?php
}
add_action('graphene_feed_icon', 'graphene_social_icons');
?>Admin
Hi lobanye,
You can download the original theme files at this link: http://wordpress.org/extend/themes/graphene
Admin
You’ll be able to set the speed of the slider in the upcoming version. It’s now in the late stages of testing, and will be available publicly very soon.
Admin
Hi Michael,
Regarding your bug reports:
1. Fixed.
2. This is weird. I went to the website and the AddThis buttons are not clickable. I played with the CSS a little bit using Firebug (no actual edits were made to the files), but nothing seems to work. Then I reload the page and suddenly the buttons are clickable. My guess is that the AddThis buttons uses some sort of JavaScript to display the dropdown, and maybe this JavaScript, for some reason, does not finish loading on the first load.
3. Fixed.
4. Fixed.
5. WordPress currently do not assign any specific CSS class to the parent category of the category whose post is currently being displayed. There’s nothing much I can do on this one.
6. The theme takes the dimension of the header from the
HEADER_IMAGE_WIDTHandHEADER_IMAGE_HEIGHTPHP constants. If you modified the height of the image using the methods outlined here, there shouldn’t be any problem.Thanks for the reports!
I have updated the beta zip file to include the new fixes. Please download them and try out if there’s any more bugs left.
Admin
Hi Albert,
The upcoming update will include an option that allows you to disable the allowed html tags notice. It won’t be long since the update will be published, but in the meantime, just download the theme again to get the original file.
You can download the theme here: http://wordpress.org/extend/themes/graphene
Admin
Hi everyone,
Beta 2 of Graphene 1.1 has been released! Please follow this link for information and download: https://forum.graphene-theme.com/topic/beta-graphene-11-beta-2
Admin
In reply to: how to add a facebook icon next to rss icon at the top of theme
October 22, 2010 at 8:53 pm #11411Oops..edited the code to remove the extra
}😀The buttons should work in all of the website’s pages, including the category pages. There’s nothing in the code to stop it from being displayed in the category page.
Admin
Michael, I’ve answered your question about placing addition feed icons here: https://forum.graphene-theme.com/topic/how-to-add-a-facebook-icon-next-to-rss-icon-at-the-top-of-theme#post-530
Admin
In reply to: how to add a facebook icon next to rss icon at the top of theme
October 22, 2010 at 8:30 pm #11408You can use the
graphene_feed_iconaction hook to add additional icons beside the RSS icon at the top bar.The code should be something like this below (place it in your child theme’s functions.php):
function graphene_social_icons(){
?>
<!-- The content goes here -->
<?php
}
add_action('graphene_feed_icon', 'graphene_social_icons');PS: Michael, that looks familiar? 😀
