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
Apologies for the late reply. I had to attend to family matter for the past week and missed your post. You can send me the user ID and password using the contact form here: http://www.khairul-syahir.com/contact-me
Admin
Topic split. Please remember to create your own topic next time.
Admin
It appears that the “Displet Pop” plugin has a script error that’s causing the other scripts in the page to not load. Try deactivate the plugin and see if the slider works. If it does, try reinstall the plugin to see if it helps get rid of the issue. If not, contact the plugin author and let him know about it.
Admin
Admin
Try deleting the WPTouch plugin and see if the error still shows.
Admin
Moved to Support. Please post in the correct section next time.
Can you enable the slider again? We need to see the issue to help you troubleshoot it.
Admin
You will need to enter the your API key in WP Admin > Appearance > Graphene Mobile > API Key. Without the API key, you’ll get that error when updating.
Admin
In reply to: Will activating a child theme make me lose current settings
February 9, 2013 at 2:41 pm #35688Graphene Options are not affected when you switch to a child theme. They’ll be preserved and you won’t have to set them back again. Custom Header option will have to be set up again though, and your custom menus will need to be reassigned to their menu locations.
Admin
Remove those custom
category-anime.phpandloop-anime.phpfiles. Insert this code into your child theme’sfunctions.phpfile instead:/**
* Sort posts in certain category archives according to post title
*/
function my_sort_archive_by_title( $query ){
if ( $query->is_archive() && $query->is_main_query() ) {
/* Argument to is_category() is an array of the IDs of the
categories whose posts should be sorted by post title */
if ( is_category( array( 1, 9 ) ) ) {
$query->set( 'orderby', 'title' );
$query->set( 'order', 'ASC' );
}
}
}
add_action( 'pre_get_posts', 'my_sort_archive_by_title' );Admin
You can insert description for each category, then this description will show up at the top of the category archive page. Below that, the posts (or walks, as in your site) that belong to that category will be listed. This is the easiest way, though it is pretty limiting (e.g. no full WYSIWYG support for the description).
Or, you can keep the current page structure, and just use the Post Tags and Categories for Pages plugin.
