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: 1.9.1. Uncaught TypeError: Cannot read property 'length' of undefined
August 10, 2013 at 2:51 pm #39805This is the same bug as reported here, which we’ve already fixed and will be available in the next update.
Admin
Each tag archive page has the class
tagassigned 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
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
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
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
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
In reply to: Graphene 1.9.1 breaks lightbox image and video display makes everything fullscreen?
August 5, 2013 at 1:40 pm #39680You 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.
Admin
In reply to: Graphene 1.9.1 breaks lightbox image and video display makes everything fullscreen?
August 5, 2013 at 7:49 am #39678Try disabling shareaholic and Table of Content Plus plugins and see if it works.
Admin
When you’ve created a child theme, create a
functions.phpfile 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
I wonder if more people actually find this feature restricting rather than helpful.
