Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Header issues

    #12266

    This is exactly what you should check: Is its parent directory writable by the server?

    If you can access the folder via ftp, chances are you can also set the folder’s permission via ftp as well. See here for more info: http://codex.wordpress.org/Changing_File_Permissions

    Admin

    In reply to: Slider Doesn't Move!!!

    #12278

    The simplemodal login plugin probably contains an error in the javascript code, which put a stop to all other javascript in the page. Try disabling the plugin to see if it works.

    Admin

    In reply to: static front page

    #12270

    You can disable the slider by going to the Graphene Options page and tick the Disable slider option.

    Admin

    In reply to: Footer Thickness

    #12244

    Add this in your child theme’s style.css file:

    #footer{
    height:100px;
    }

    Of course, you can modify the height to whatever value you want.

    Admin

    In reply to: Put a banner above or below the slider

    #12189

    This bit should be outside the closing }, like so:

    <?php
    function graphene_custom_content(){
    if (is_front_page()) {
    ?>

    <div id="graphene_custom_content" style="text-align:center";>
    <!-- The content goes here -->
    MY CODE HERE

    </div>

    <?php
    }
    }
    add_action('graphene_before_content', 'graphene_custom_content');
    ?>

    Note also that using the code above will cause the custom content you put in to be displayed only in the front page. If you want it to appear in all posts and pages, remove the if (is_front_page()) { conditional and one closing }.

    Admin

    In reply to: Issues with the new update (Pings)

    #12217

    Hurm…this is weird…it shows up fine in all my tests, and I’ve had others beta-test the theme and they didn’t report this problem.

    It seems that each ping has is closed twice (two closing </li> tags) which are messing up the layout. Any chance you have modified the code in some way? It’s also probably one of the plugins you’re using. Try deactivating them one by one to see if any of them caused the problem.

    Admin

    In reply to: missing buttom

    #12258

    Is the website using the Custom Menu functionality? It should be in Appearance > Menus. You can set up your own menu there.

    Admin

    In reply to: Header in flash

    #12256

    The theme does not have this functionality, but you can add it yourself.

    Admin

    Hi evelyn,

    The theme is showing the link to comments in the front page by default. But it probably doesn’t if you use a static front page..

    Hurm..if you wanna force the comment to be shown, just add this code into your child theme’s functions.php:

    function graphene_force_comment(){
    $withcomments = 1; // force comments form and comments to show on front page
    comments_template();
    }
    add_action('graphene_bottom_content', 'graphene_force_comment');

    Note that this code is untested, and it assumes that the code you provide above works.

    Admin

    In reply to: Images on pages

    #12267

    It’s probably much easier if you use a photo gallery plugin, like the NextGen Gallery.

Viewing 10 posts - 5,511 through 5,520 (of 6,030 total)