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
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!
When i place the code the featured image stays there.
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!