Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    @Michael, if you put codes in between backticks (`) in your reply, the codes won’t be parsed.

    Admin

    Your functions.php file must have an initial opening <?php tag 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

    In reply to: Editing the CSS Stylesheet

    #11465

    Hi lobanye,

    You can download the original theme files at this link: http://wordpress.org/extend/themes/graphene

    Admin

    In reply to: How to change speed of slider posts

    #11469

    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

    In reply to: [BETA] Graphene 1.1 beta 2

    #11446

    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_WIDTH and HEADER_IMAGE_HEIGHT PHP 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

    In reply to: Comments.php

    #11267

    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

    In reply to: Volunteer for Theme Testing

    #11092

    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

    Oops..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

    In reply to: [BETA] Graphene 1.1b1

    #11378

    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

    You can use the graphene_feed_icon action 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? 😀

Viewing 10 posts - 5,831 through 5,840 (of 6,030 total)