Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Change Log

    #17066
    Admin

    In reply to: The plugin does not have a valid header.

    #17124

    Hi John,

    Graphene Mobile is not a plugin, it’s a theme. You can view the full installation instructions here: http://www.khairul-syahir.com/wordpress-dev/graphene-mobile/installation-instructions/

    Admin

    In reply to: API Key

    #17065

    Hi Maryke,

    It should have been included in the purchase receipt that was sent to your email. If not, you can also get it by logging in at the account page and then click on the “Downloads” link.

    Admin

    In reply to: Bug? unwanted horizontal scollbar

    #16663

    Try replacing the theme’s rtl.css file with the updated one here: http://graphene.googlecode.com/svn/trunk/graphene/rtl.css

    Admin

    In reply to: Different a.hover colors?

    #17006

    CSS styles don’t need line breaks, i.e. those <br /> tags. Remove them.

    Admin

    In reply to: Broken menu

    #17017

    🙂

    Admin

    In reply to: tabs, jquery…

    #17032

    The theme has already loaded jQuery Tools on all pages, though this will not be the case in the next update (1.5), which will load the jQuery Tools only on the front page where it is needed by the theme.

    To make sure jQuery Tools is loaded regardless of whether the theme needs it or not, just add this to your child theme’s functions.php file:

    function graphene_enqueue_scripts_custom(){
    wp_enqueue_script( 'jquery-tools' );
    }
    add_action( 'init', 'graphene_enqueue_scripts_custom' );

    That will make sure WordPress loads jQuery Tools, if it hasn’t already been loaded.

    Next, you didn’t mention anywhere in your first post that you have written the extra javascript needed to initialise the tabs, so I assume that’s why the tabs don’t work. The script is there, but it’s not initialised.

    Go to the demo page, and see the codes under the “JavaScript code” section. You need to add that to your website, after the jQuery Tools have been loaded. This is best done by adding this code to your child theme’s functions.php:

    function graphene_custom_tabs_script(){
    ?>
    <script type="text/javascript">
    jQuery(document).ready(function($) {
    $("ul.tabs").tabs("div.panes > div");
    });
    </script>
    <?php
    }
    add_action( 'wp_footer', 'graphene_custom_tabs_script', 100 );

    Notice that the javascript code is slightly different than the one in the jQuery Tools demo site. This is because WordPress uses jQuery in the no-conflict mode. Make sure also to change the CSS selectors in the javascript code to match the markup on your site.

    Admin

    In reply to: Feature Request

    #16993

    Version 1.1.3 was available for update since 1 September. The new features will be available in the next update.

    Admin

    In reply to: Graphene Twitter Widget not working with IE9

    #16972

    Looks like Twitter has fixed this.

    Admin

    In reply to: Gallery or Image presentation

    #17000

    Hi giles14,

    These are actually features that have not been implemented in the theme. I’ve moved this topic to the Feature Requests section so that’ll I can keep them in mind.

Viewing 10 posts - 4,181 through 4,190 (of 6,030 total)