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 using a child theme, add this code into the child theme’s style.css:
.wowhead-tooltip table tr, .wowhead-tooltip table td, .wowhead-tooltip table th{
background:none;
border:none;
}If not, open up the theme’s
style.cssand add the code above at the bottom of the file.Admin
I see the comments are displaying just fine. In fact, I’ve spammed your front page with a test comment there, and it shows “Your comment is awaiting moderation.”, which means that in your WordPress settings, you have set that all new comments must be moderated before being displayed publicly.
See Settings > Discussion in your WordPress admin for all comment-related settings.
Admin
Yes it is. Using a child theme, create a
functions.phpfile inside the child theme and insert this code:<?php
// Create our own function that control where the slider is displayed
function graphene_custom_display_slider(){
if (is_front_page() || is_single() || is_page())
graphene_slider();
}
// Remove the theme's default slider loading location
function graphene_remove_action(){
remove_action('graphene_top_content', 'graphene_display_slider');
remove_action('graphene_bottom_content', 'graphene_display_slider');
}
add_action('after_setup_theme', 'graphene_remove_action');
// Add our own custom function that controls where the slider is displayed
if (!get_option('graphene_slider_disable')){
if (!get_option('graphene_slider_position'))
add_action('graphene_top_content', 'graphene_custom_display_slider');
else
add_action('graphene_bottom_content', 'graphene_custom_display_slider');
}
?>Admin
URL please. Might be https issue.
Admin
You need to do another step to show pages in the slider. See this post: https://forum.graphene-theme.com/topic/feature-pages-not-posts-in-the-slider#post-1179
Admin
You can create a static front page. Please follow the instructions here on how to set it up: http://codex.wordpress.org/Creating_a_Static_Front_Page
If you don’t want any content, you can just use an empty page as the static front page.
Admin
I would think so, yes. But why would you need such a deep dropdown menu?
Admin
Hurm…I don’t quite get what you want to achieve. Can you clarify a bit further?
Admin
The theme merely outputs the number, without any styling at all. You’d have to style the comment number yourself.
