Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author silverks

    (@silverks)

    Hey Lawsie,

    The support forum for Graphene Mobile is here:
    https://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.

    Thread Starter Andrew Laws

    (@lawsie)

    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.

    Theme Author silverks

    (@silverks)

    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.

    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; */?>

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Removing featured image from Graphene mobile’ is closed to new replies.