Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    This is the same bug as reported here, which we’ve already fixed and will be available in the next update.

    Admin

    In reply to: Need some pointers on modifying the archive layout

    #39757

    Each tag archive page has the class tag assigned to the <body> element, so you can use that to write CSS codes that only affect the tag archive pages. Example:

    .tag .post.nodate {
    width: 640px;
    }
    Admin

    In reply to: Graphene Options: click to toggle is not working

    #39773
    Quote:
    The “Toggle all options boxes” bit works, but not the individual ones against each option.

    There never was an option to toggle all individual options on or off. This is because some options require more setting when you enable them, for example selecting the categories for the slider and inserting the codes for Google Analytics and Adsense.

    Admin

    In reply to: select menu feature for custom menu

    #39746
    Quote:
    The select menu itself does not act as a highlighted parent, even if the the pages opened are children – I notice that it reverts to navigate to page the moment you move off the page selected in the menu – I sort of hoped it would stay with the parent until you moved away from its childs?

    OK, we’ll add this improvement in the next update.

    Admin

    In reply to: 1.5.1 select menu doesn't work

    #39774

    Hi,

    There’s a bug in the theme’s options page that caused this. I’ve identified the issue and will release an update soon to address it.

    Admin

    In reply to: select menu feature for custom menu

    #39744

    Currently it is not possible to apply the <select> menu feature to any other custom menu apart from the theme’s header and footer menu.

    However, the menu behaviour being used in The Guardian mobile site can be achieved by using custom CSS and/or JS scripts, though the implementation may be a little too complicated if you’re not well-versed in PHP, JS, and CSS.

    Admin

    You can try going back to 1.9 and see if the issue is still there. This will help determine if the issue is really with the theme.

    http://wordpress.org/themes/graphene/developers/

    Admin

    Try disabling shareaholic and Table of Content Plus plugins and see if it works.

    Admin

    In reply to: Removing post date from google snippet?

    #39574

    When you’ve created a child theme, create a functions.php file inside your child theme. Then, add this code into that file:

    <?php
    /**
    * Displays the date. Replaces Graphene's function to remove date from Google rich HTML snippet.
    */
    function graphene_post_date( $id = '' ){

    if ( ! $id ) {
    global $post;
    $id = $post->ID;
    }

    if ( ! graphene_should_show_date() ) return;

    global $graphene_settings;
    $style = graphene_post_date_setting( $id, 'post_date_display' );

    if ( stristr( $style, 'icon' ) ) :
    ?>
    <div class="date alpha <?php if ( $style == 'icon_plus_year' ) echo 'with-year'; ?>">
    <p class="default_date">
    <span class="month"><?php the_time( 'M' ); ?></span>
    <span class="day"><?php the_time( 'd' ) ?></span>
    <?php if ( $style == 'icon_plus_year' ) : ?>
    <span class="year"><?php the_time( 'Y' ); ?></span>
    <?php endif; ?>
    </p>
    <?php do_action( 'graphene_post_date' ); ?>
    </div>
    <?php
    endif;

    if ( $style == 'text' ) :
    ?>
    <p class="post-date-inline">
    <?php the_time( get_option( 'date_format' ) ); ?>
    <?php do_action( 'graphene_post_date' ); ?>
    </p>
    <?php
    endif;
    }
    Admin

    In reply to: Text Editor area too narrow

    #39702

    I wonder if more people actually find this feature restricting rather than helpful.

Viewing 10 posts - 1,651 through 1,660 (of 6,030 total)