Kenneth John Odle

Moderator

Forum Replies Created

  • Mod

    Please DON’T bump. If you don’t get a response, either nobody has yet noticed, or they are busy researching it, or they just don’t know.

    If you think it’s a bug, please post it in the Bug Report section of the forum.

    Mod

    In reply to: Slider Issue

    #44800

    @craggy:

    Please don’t hijack someone’s else thread. Please feel free to create your own support and/or feature request thread.

    Mod

    In reply to: tables display

    #44723

    I didn’t even think about inline blocks, but that is also a good way to go.

    Marking thread as resolved. You can do this yourself as well.

    Mod

    In reply to: No Comment Option on blog posts

    #44797

    It is probably a Jetpack issue, then. You may want to try playing around with the Jetpack comments settings.

    Mod
    Quote:
    So, what should I add to the Display Tab under “Custom CSS” to make this happen?

    It’s not custom CSS.

    First, go here:

    http://creativecommons.org/choose/results-one?license_code=by&jurisdiction=&version=4.0&lang=en

    grab the code, and adapt it if you need to, and then go to

    Graphene Options >> General Options >> Footer Options

    and enter it in the box labeled “Copyright text (html allowed)”

    Moved to Support

    Mod

    In reply to: No Comment Option on blog posts

    #44795

    Those images aren’t showing. You need to upload them somewhere on the internet that is publicly accessible.

    Is the comment function working fine on older posts? Or is it absent from all posts? Are you using any kind of comment plugin?

    Mod

    In reply to: post Thumbnails at the Home page

    #44807

    That code will stretch your images, which, as you discovered, won’t look good.

    You’ll need to play around with your WordPress media settings, and then use a plugin (such as Ajax Thumbnail Rebuild) to rebuild all your thumbnails to a better size.

    Mod

    In reply to: Graphene Customize Issue

    #44804
    Quote:
    I do not see a way to update the theme. I am using GoDaddy and a managed WordPress package.

    I’m not 100% sure of how GoDaddy manages their WordPress packages, but if you don’t have shell or ftp access to your site, you may want to contact their support.

    Mod

    In reply to: Graphene with blog grid layout?

    #44736
    Quote:
    I would like to display my latest blog posts beneath the header in a two-column

    If you are using a static home page, you can activate homepage panes, which will give you a two-column layout of recent blog posts, which you can then adjust to your liking using CSS.

    Mod

    In reply to: post Thumbnails at the Home page

    #44805

    If you want to change the length of all excerpts, you can add this code to your child theme’s functions.php file:

    function custom_excerpt_length( $length ) {
    return 0;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    If you only want to make them disappear on your home page, use this CSS:

    .home .excerpt-thumb + p {
    display: none;
    }

Viewing 10 posts - 391 through 400 (of 5,839 total)