Mobile theme featured image

Posted in: Newspaper
Post count: 16

A few posts i’ve created are supposed to load without the featured image on top. That’s why i’ve selected the ‘style 5’ post template. On the normal website this works fine but on the mobile theme it doesn’t.

It is still loading up the featured image when viewing the post with the mobile theme.

How can i fix this?

I also noticed some strings in the footer are not localized (About us and follow us). Where can i translate these?

Thanks for your help!

Greetings

Post count: 22421

Hello,

Unfortunately the mobile theme does not have a style 5. It only features one style that has a featured image set to it. There are no multiple mobile styles to choose from.
For the moment just by using css can you disable the mobile featured image.
If you want to remove the featured image on all posts, you can use this code:
@media(max-width:767px){
.post .td-post-featured-image{
display:none!important;
}}

or if you want to target specific posts, use the code based on the post id’s:

@media(max-width:767px){
.postid-1253 .td-post-featured-image, .postid-1254 .td-post-featured-image, .postid-1255 .td-post-featured-image{
display:none!important;
}}

I will add this to our list of feature updates and we will look into this issue

Thank you!

Post count: 16

Thanks Bogdan,

The workaround works like a charm.

Thanks for the quick and great support!

Post count: 15

When i place the code the featured image stays there.

http://prntscr.com/egcab1

Post count: 22421

Please provide a link to your site so I can inspect it and see why the code does not apply.
Thank you!

Post count: 15
Post count: 22421

Hi,

The code works as expected.
This code will remove the featured image from all posts on the mobile theme:
@media(max-width:767px){
.post .td-post-featured-image{
display:none!important;
}}

You have to add this code in the mobile theme custom css box, not the main theme one: https://www.screencast.com/t/ZzT6fvW3bjY

Thank you!

Viewing 7 posts - 1 through 7 (of 7 total)
The forum ‘Newspaper’ is closed to new topics and replies.