Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Hover colours stay visible

    #37813

    Your “Contact Us” menu item is linking to the home page as well, so WordPress (rightly) thinks that it is the current page, and mark it so. Change the link for that menu item.

    Admin

    Marking thread as resolved. You can do this yourself as well.

    Quote:
    Thanks so much . I cannot donate money but is there any other way i could help you guys ?

    See this page: http://docs.graphene-theme.com/Ways_to_contribute

    Admin

    In reply to: Cannot hide sidebar when creating custom page template

    #37826

    Can you just put the JavaScript code into the page content itself just like any other content, but using code view in the WordPress’ Edit Page screen?

    Admin
    Quote:
    Quote:
    do the posts that belong to the “Front Page EN” category belongs to the “News” category as well?

    yes they do

    In that case, check the setting for “Exclude the categories from posts listing” option in Graphene Options > Slider Options. It should be set to disabled.

    Admin

    In reply to: Slider not working properly

    #37816

    What’s the URL to the site where it’s not working?

    Admin

    In reply to: Wider header Image?

    #37810

    Try resetting the theme’s options and set them again. You can also export the settings first as backup just in case that doesn’t fix it.

    Admin

    Just copy the content of the theme’s footer.php file. Then, replace the entire portion of the code below with your custom footer. It’ll be much easier.

    <div id="footer" class="clearfix">

    <?php if ( ! $graphene_settings['hide_copyright'] ) : ?>
    <div id="copyright">
    <h3><?php _e('Copyright', 'graphene'); ?></h3>
    <?php if ( $graphene_settings['copy_text'] == '' && ! $graphene_settings['show_cc'] ) : ?>
    <p>
    <?php printf( '© %1$s %2$s.', date( 'Y' ), get_bloginfo( 'name' ) ); ?>
    </p>
    <?php elseif ( ! $graphene_settings['show_cc'] ) : ?>
    <?php
    if ( ! stristr( $graphene_settings['copy_text'], '</p>' ) ) { $graphene_settings['copy_text'] = wpautop( $graphene_settings['copy_text'] ); }
    echo $graphene_settings['copy_text'];
    ?>
    <?php endif; ?>

    <?php if ( $graphene_settings['show_cc'] ) : ?>
    <?php /* translators: %s will replaced by a link to the Creative Commons licence page, with "Creative Commons Licence" as the link text. */?>
    <p>
    <?php printf( __( 'Except where otherwise noted, content on this site is licensed under a %s.', 'graphene' ), '<a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">' . __( 'Creative Commons Licence', 'graphene' ) . '</a>' ); ?>
    </p>
    <p class="cc-logo"><span><?php _e( 'Creative Commons Licence BY-NC-ND', 'graphene' ); ?></span></p>
    <?php endif; ?>

    <?php do_action('graphene_copyright'); ?>
    </div>
    <?php endif; ?>

    <?php if ( has_nav_menu( 'footer-menu' ) || ! $graphene_settings['hide_return_top'] ) : ?>
    <div class="footer-menu-wrap">
    <ul id="footer-menu" class="clearfix">
    <?php /* Footer menu */
    $args = array(
    'container' => '',
    'fallback_cb' => 'none',
    'depth' => 2,
    'theme_location' => 'footer-menu',
    'items_wrap' => '%3$s'
    );
    wp_nav_menu(apply_filters('graphene_footer_menu_args', $args));
    ?>
    <?php if ( ! $graphene_settings['hide_return_top'] ) : ?>
    <li class="menu-item return-top"><a href="#"><?php _e('Return to top', 'graphene'); ?></a></li>
    <?php endif; ?>
    </ul>
    </div>
    <?php endif; ?>

    <?php if ( ! $graphene_settings['disable_credit'] ) : ?>
    <div id="developer" class="grid_7">
    <p>
    <?php /* translators: %1$s is the link to WordPress.org, %2$s is the theme's name */ ?>
    <?php printf( __('Powered by %1$s and the %2$s.', 'graphene'), '<a href="http://wordpress.org/">WordPress</a>', '<a href="http://www.khairul-syahir.com/wordpress-dev/graphene-theme">' . __('Graphene Theme', 'graphene') . '</a>'); ?>
    </p>

    <?php do_action('graphene_developer'); ?>
    </div>
    <?php endif; ?>

    <?php do_action('graphene_footer'); ?>
    </div><!-- #footer -->

    Also, make sure that you’re aware of the caveat of replacing any of the theme’s template files with your own:

    http://docs.graphene-theme.com/Customisation_using_a_child_theme#Special_consideration

    Admin

    In reply to: Wider header Image?

    #37808

    How did you change the website width? Via the theme’s Column Width options?

    Admin

    In reply to: Twitter Widget

    #37784

    Try this:

    .sidebar #tweetfollow {
    text-align: center;
    }
    .twitter-follow-button {
    width: 150px !important;
    }
    Admin

    In reply to: graphene options when user logged in

    #37788

    OK, we’ll fix this in the next update. You can also get the fix now by replacing the whole content of the theme’s admin/options-init.php file with the updated one here:

    https://graphene.googlecode.com/svn/trunk/graphene/admin/options-init.php

Viewing 10 posts - 2,021 through 2,030 (of 6,030 total)