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/
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.
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.
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.
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.