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
First of all, what plugin do you use to make the website multilingual? You can try using WPML, which includes a language selector widget which you could add to the sidebar.
You’d have to use CSS to modify the size and style of the pages menu.
Admin
Did you tick the “Disable Slider” option in the theme’s Graphene Options admin page?
Admin
Will keep this in mind. I’ll see about implementing this in the future.
Admin
I can probably help you better if you could explain more how the subcategories are being displayed now and how you would want it to be displayed.
Admin
In reply to: How do I add pictures to the slider and make the width and length larger?
October 29, 2010 at 9:52 pm #11490The slider uses the post’s excerpt, so you can’t add images to it (this is a WordPress limitation of the
the_excerpt()function). If you’re talking about the thumbnail for every post in the slider, currently you can only use the Featured Image function for that. The upcoming version will provide greater flexibility for this.The upcoming version will also allow you to edit the height of the slider, but not the width. You’d have to use a child theme and edit the CSS styling using the child theme for that.
Admin
Hi David,
Right now the only way to do that would be to modify the theme’s
functions.phpdirectly, or to copy the entiregraphene_slider()function into a child theme’sfunctions.phpand modify it there. Neither of this method is ideal.Future version will include an intermediate function,
graphene_display_slider(), that handles the conditional statements, so that one only needs to modify that intermediate function instead of thegraphene_slider()function to achieve what you want. This allows for future updates to the slider code in the theme’sfunctions.phpand still retain the custom conditional statements in the child theme’sfunctions.phpfile.If you want a quick and dirty way of doing it, assuming you are using version 1.0.9.3 of the theme, you can just open up the
header.phpfile and navigate to line 121, and modify it from this:<?php if (is_front_page() && !get_option('graphene_slider_disable')) : ?>to this:
<?php if (!get_option('graphene_slider_disable')) : ?>This is a quick and dirty method because even though it works, the changes you made won’t be retained the next time you update the theme.
Admin
This feature has already been added to the latest version, which is currently in the review queue at the WordPress.org theme repository.
Admin
In reply to: HTTPS-Problems: header-image stays as http, when using custom image
October 28, 2010 at 10:04 pm #11059It seems like more people are adversely affected by this change than benefited by it. I’m gonna remove this code in the next maintenance update, until a better solution can be found.
Admin
@Jorge: What do you mean by the changes you’ve made are gone? You need to make the changes in the child theme. For CSS changes, put the CSS codes in the child theme’s
style.cssafter the@import url("../graphene/style.css");line.@Leah: WordPress treats a child theme as a separate, different theme then the parent theme. So whenever you switch to a child theme, you would have to upload and set the custom header image and background image again.
Admin
If all you want to do is move the slider from the top of page to the bottom of the page, the next version will allow you to do just that.
