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
If you have only 8 images, try reuploading them again, and use the reuploaded images as the Featured Image for the posts in the slider.
Admin
I use SGS2, which has screen capture feature built in, so there’s no need to root the phone and no need for a separate app.
Have you tried visiting the site using other smartphones?
Admin
It looks fine to me:

Admin
OK, replace these two theme’s files with the updated ones:
languages/ru_RU.pohttp://graphene.googlecode.com/svn-history/r324/branches/1.6/languages/ru_RU.po
languages/ru_RU.mohttp://graphene.googlecode.com/svn-history/r324/branches/1.6/languages/ru_RU.mo
Admin
Prasanna is correct, the theme does not include any built-in lightbox function. You would need to install a plugin for that. I would recommend using lightbox plugins that are using jQuery instead of sriptaculous. That way, there’ll be less scripts for your users to download, and less chances of script conflicts.
Admin
@prasanna,
Quote:Wait for a few hours for the update.Unfortunately, in all likelihood it’s probably gonna take longer than that. The Theme Review Team used to do reviews very fast, but lately it’s been taking longer and longer…
Admin
Hi Johnny,
The theme does not do any automatic hyphenation for the content. It could be some plugins. Try deactivating all plugins and see if the problem persists.
Admin
Seems like it’s displaying fine now?
Admin
What’s the URL to your site?
I’ve tested it on my dev server, and it works. However, the Hungarian translation file hasn’t been updated for a long time, so a lot of translations may be missing.
Admin
Ken is correct, the jQuery Tools library is now only loaded on pages where it is needed, i.e. pages where the slider is displayed. To load jQuery Tools on all pages, add this to your child theme’s
functions.phpfile:function custom_enqueue_scripts(){
if ( ! is_admin() ) { // Front-end only
wp_enqueue_script( 'graphene-jquery-tools' );
}
}
add_action( 'wp_enqueue_scripts', 'custom_enqueue_scripts' );
