Forums

[resolved] Removing featured image from Graphene mobile (6 posts)

  1. lawsie
    Member
    Posted 5 months ago #

    I love the Graphene mobile theme, but am struggling to figure out how to remove pages' featured image from appearing at the top of each page when viewed on a mobile device.

    Sorry if this is the wrong place to post, it was the closest place I could find!

    http://wordpress.org/extend/themes/graphene/

  2. silverks
    Member
    Posted 5 months ago #

    Hey Lawsie,

    The support forum for Graphene Mobile is here:
    http://forum.khairul-syahir.com/graphene-mobile-forum/

    As for the featured image, there's an option in Graphene Mobile Options page to turn that off.

  3. lawsie
    Member
    Posted 5 months ago #

    Thanks, I ran through that forum but couldn't find any help.

    I can't spot anything for featured image in the graphene mobile options, but it's not a big deal.

  4. silverks
    Member
    Posted 5 months ago #

    Graphene Mobile is a paid-for theme, and the official support is provided via the forum I linked to above.

    As for the setting you're looking for, it's in WP Admin > Appearance > Graphene Mobile > Display > Posts Display Options > Hide automatic image at the top of posts.

  5. deepbevel
    Member
    Posted 3 months ago #

    I think found it. It's in "loop-post-format.php"

    if ( has_post_thumbnail( get_the_ID() ) ) { the_post_thumbnail( array( 110,110 ) ); }
            endif; ?>

    so you might try:

    <?*/
    if ( has_post_thumbnail( get_the_ID() ) ) { the_post_thumbnail( array( 110,110 ) ); }
            endif; */?>
  6. deepbevel
    Member
    Posted 3 months ago #

    oh my, after all that and it turns out there's admin settings?
    probably best to use those and ignore my code tweak.

Reply

You must log in to post.

About this Topic