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
There was none, but now there is one :). Here you go: http://www.khairul-syahir.com/wordpress-dev/graphene-mobile/graphene-mobile-changelog
Admin
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
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
Try replacing the theme’s rtl.css file with the updated one here: http://graphene.googlecode.com/svn/trunk/graphene/rtl.css
Admin
CSS styles don’t need line breaks, i.e. those
<br />tags. Remove them.Admin
🙂
Admin
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
Version 1.1.3 was available for update since 1 September. The new features will be available in the next update.
Admin
Looks like Twitter has fixed this.
Admin
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.
