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: Top Bar not showing Social Media icons after new 1.7 update
April 25, 2012 at 7:57 pm #28001All caching solutions typically have time-to-live or time duration before the cached resources expire. So even though your visitors don’t refresh their browser (as simple as pressing CTRL+F5), those resources will eventually be expired and they’ll see the updated resources.
Admin
Quote:I copied over the header from Graphene 1.7 into my child theme folder and re-customized it and things are looking better. I didn’t realize that customizing specific files in a child theme was so dangerous.See this:
Admin
Those with the widgets not showing up, export the theme options and paste the content on pastebin.com and provide the link here.
In the mean time, try my suggestion from above:
Quote:OK, try resetting the theme’s options in the database. In the Graphene Options page, on the right hand side there’s an option box called “Options Presets”. Select “Reset to default settings” and click Apply Options Preset.Note though this would reset all your Graphene settings. So you might want to export the theme options first.
Admin
What files do you have in your child theme?
Admin
You can modify the posts to be displayed in the slider by adding filter to the returned object containing the posts. You can either populate the posts manually or get it from a list of posts in WordPress.
It can get rather involved, but IMO this is the best way to do it since it doesn’t involve editing the theme’s files so you won’t lose the modification in the next update.
Admin
OK, try resetting the theme’s options in the database. In the Graphene Options page, on the right hand side there’s an option box called “Options Presets”. Select “Reset to default settings” and click Apply Options Preset.
Note though this would reset all your Graphene settings. So you might want to export the theme options first.
Admin
This is really not related to the theme, but to WordPress in general. You’ll most likely get more responses on the WordPress.org support forum.
Admin
Add this to your child theme’s
functions.phpfile:function graphene_continue_reading_link() {
global $in_slider;
if (!is_page() && !$in_slider) {
$more_link_text = __( 'Continue reading »', 'graphene' );
return '</p><p><a class="more-link block-button" href="'.get_permalink().'" rel="nofollow">'.$more_link_text.'</a>';
}
}Admin
You can either set an image as the Featured image for those posts, or upload at least one image for each of those posts.
Admin
Yes, make a
functions.phpfile in your child theme and add this code:<?php
/**
* Modify the post types to be displayed in the slider
*/
function graphene_slider_post_type(){
return array( 'post-type' );
}
add_filter( 'graphene_slider_post_type', 'graphene_slider_post_type' );Replace
post-typewith the post type you want to be displayed in the slider.
