Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: site not accessible, password required?

    #16612
    Quote:
    As soon as I reactivated the original copy of Graphene, the password problem came back. So I renamed it again and installed a fresh copy – everything is working again.

    Mystery to me…

    Do you by any chance still have the problematic copy?

    Admin

    In reply to: Pages instead of Posts at Static Front Page

    #16618

    Add this to your child theme’s functions.php file:

    <?php
    function graphene_frontpage_posts_args( $args ){
    $args['post_type'] = array('post', 'page');
    return $args;
    }
    add_filter('graphene_frontpage_posts_cats_sticky_args', 'graphene_frontpage_posts_args');
    add_filter('graphene_frontpage_posts_cats_args', 'graphene_frontpage_posts_args');
    ?>
    Admin

    In reply to: Slider Thumbnail Image Size

    #16592

    It’s probably much easier to upload the image to your host and use that instead. Or if you’re automating posts from RSS feed, you can just simply set the width of the image and leave height to auto via CSS.

    Admin

    In reply to: Re: Slider showing only 1 post

    #16368

    What’s the value you have in Graphene Options > Slider > Slider speed? If there’s no value there, try inserting 7000.

    Admin

    In reply to: Slider Thumbnail Image Size

    #16590

    You can simply set the first image that you use in the post as the featured image.

    Admin

    In reply to: I have Problems with my blog entries

    #16586

    frusps, can you list the plugins you have installed?

    Admin

    In reply to: Adding Custom Fields To Excerpts

    #16537

    Have you tried the “Graphene post-specific options”?

    Admin

    In reply to: Problem: Fatal Error on the home page…

    #16457

    You just need to update WordPress to at least version 3.1. It should be pretty safe.

    Admin

    In reply to: If using a child theme, how do I edit the files now?

    #16594

    You might want to give a read through this section on the theme’s (work-in-progress) wiki.

    Admin

    In reply to: How to delete default header images?

    #16563

    It’s even easier than that. Just add this to your child theme’s functions.php file:

    <?php
    function graphene_get_default_headers() {
    return 'None';
    }
    ?>

Viewing 10 posts - 4,261 through 4,270 (of 6,030 total)