Syahir Hakim

Keymaster

Forum Replies Created

  • Admin

    In reply to: Pagination plugin

    #27583

    How many posts do you currently have? The default WordPress setting is to show 10 posts per page, so you probably don’t have enough posts yet to be paginated.

    Admin

    In reply to: Replacing parent function in child theme

    #27698

    @ramyos, you would need to create a child theme, and then place the code inside the functions.php in your child theme.

    See this wiki page for instructions on setting up a child theme:

    http://wiki.khairul-syahir.com/graphene-theme/wiki/Customisation_using_a_child_theme

    Admin

    In reply to: blank spaces between posts – ADSENSE

    #28371

    If you’re using a child theme, you can limit the number of ads that the theme displays. Place this code in your child theme’s functions.php file:

    function my_graphene_ads_limit(){
    return 1;
    }
    add_filter( 'graphene_adsense_ads_limit', 'my_graphene_ads_limit' );
    Admin

    In reply to: How can I un-upgrade from 1.7?

    #28207
    Quote:
    Can I enter !important right into the field where I enter the color?

    Like “#transparent !important”

    Nope, you cannot. Those fields are only for hex colour codes. For all other values, use the Custom CSS feature instead.

    The # was added really after there have been quite a number of support requests here saying that the colour option does not work, which is often because they didn’t put the # in there.

    Admin

    In reply to: problem pages

    #28319

    What exactly have you moved?

    Admin

    In reply to: Graphene and Nextgen Gallery: styles not working

    #28308

    That is a slideshow, not an image gallery, which is the reason why none of the NGG styles you selected is having any effect. Image gallery is a list of image thumbnails, where you need to click on the thumbnails to view the images.

    To add shadow to that slideshow, try adding this to the theme’s Custom CSS feature:

    .entry-content div.slideshow {
    -webkit-box-shadow: 0 0 5px #000;
    -moz-box-shadow: 0 0 5px #000;
    box-shadow: 0 0 5px #000;
    line-height: 0;
    margin-top: 10px;
    }
    Admin

    Okay, that action hook isn’t supposed to be there. You might not be able to use the theme’a action hook widget area for this, but you can hook functions to it using WordPress’ own comment_form_after_fields action hook.

    Admin

    In reply to: Graphene and Nextgen Gallery: styles not working

    #28306

    Can you point us to a page on your site where a gallery from the NextGen Gallery is being displayed?

    Admin

    There seems to be a bunch of (malformed) codes at the end of that page content. Try going to the Edit Page screen for that page, swicth the editor from Visual to HTML mode, then delete the extraneous codes at the bottom of the page’s content.

    Admin

    In reply to: problem pages

    #28317

    Hurm.. did you modify any of the theme’s files?

Viewing 10 posts - 3,291 through 3,300 (of 6,030 total)