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
OK, I’ve just implemented this in the theme. Will be available in the upcoming version 1.3.
Admin
Hurm..ok..did you by any chance made any changes to the theme’s codes? Also, did you have any new functions in the child theme’s functions.php file (assuming you have a child theme)?
Admin
At the bottom of the Slider Options tab there’s a checkbox for “Disable slider”. Make sure that is unchecked. Sorry if I’m repeating myself, but that’s really the most probable reason, as the HTML codes for the slider is not being output to the page at all.
Admin
Hi Fonfon,
Sorry it’s been so long. Here’s the latest file: http://www.khairul-syahir.com/files/antiaris.zip
Admin
The print stylesheet has indeed been added to the theme, and will be available in the upcoming version 1.3. You can see the changelog for version 1.3 here: https://forum.graphene-theme.com/topic/alpha-graphene-13a
Admin
Add this code either into your child theme’s
style.cssfile, or in the theme’s Custom CSS option:.sidebar-wrap .textwidget{
text-align: center;
}Admin
The slider will show by default the latest 5 posts that belong to the category that you’ve selected, regardless of whether or not those posts belong to other catgories as well or not.
You can change the number of posts to be displayed in the slider in the theme’s options page.
Admin
You can first hide the current “view full post” button using CSS, and then add your modified “view full post” button by using child theme and action hook.
That is, assuming you’re familiar with CSS, PHP, child theme, and WordPress action hooks. Not easy to achieve if you’re not familiar with those stuffs.
Admin
Create a child theme, then create a new
functions.phpfile inside your child theme folder. Then add this code inside your child theme’s folder:<?php
/* Modify the place slider is hooked to */
function graphene_slider_remove_action(){
remove_action('graphene_top_content', 'graphene_display_slider');
}
add_action('init', 'graphene_slider_remove_action');
add_action('graphene_before_content-main', 'graphene_display_slider');
?>Then you will need to modify the widths of the slider elements using the child theme’s
style.cssfile. I recommend using the Firebug plugin for Firefox to identify which elements need the width modified.Admin
Bala, you are not doing it right. There is no need to copy any of the theme’s files at all. Make sure you read properly on how to set up a child theme: https://forum.graphene-theme.com/topic/how-to-modify-the-theme-using-a-child-theme
