Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: wowhead.com tooltips

    #12174

    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.css and add the code above at the bottom of the file.

    Admin

    In reply to: can I make navigation bar go away?

    #12170

    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

    In reply to: Slider in all posts / pages

    #12192

    Yes it is. Using a child theme, create a functions.php file 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

    In reply to: Can't upload new Headers

    #12193

    URL please. Might be https issue.

    Admin

    In reply to: Pages in slider

    #12190

    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

    In reply to: static home page

    #12180

    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

    In reply to: How to hide static page title

    #12052

    I would think so, yes. But why would you need such a deep dropdown menu?

    Admin

    In reply to: static home page

    #12178

    Hurm…I don’t quite get what you want to achieve. Can you clarify a bit further?

    Admin

    In reply to: Numbered Comments

    #11906

    The theme merely outputs the number, without any styling at all. You’d have to style the comment number yourself.

    Admin

    In reply to: Slider

    #12166

    In the Custom Menu page, to the left under Pages, click on the View All tab.

Viewing 10 posts - 5,551 through 5,560 (of 6,030 total)