hide featured image from specific post

Posted in: Newsmag
Post count: 280

Hello
i hide featured image from specific post, but in the same time the small one still shown in homepage

any advice?

Post count: 6535

Hi

To remove the feature image from blocks for a specific post just remove it from WordPress editor: http://screencast.com/t/qp3bF4QN Like this there won’t be any image to be displayed for that post on modules.

Thanks!

Post count: 280

Hello
But if i do that its will gone from homepage. How to Avoid that?

Post count: 6535

Hi

A possible solution would be to add this conditions in td_module.php like here: http://screencast.com/t/T2OjbjmtJhy

if (is_front_page()){
                return $buffy;
            }
            elseif ($this->post->ID != '568' ){
                return $buffy;
            }

Just replace the indicated number with your post id: http://screencast.com/t/hwrl6TnR

Thanks!

  • This reply was modified 10 years by Andrei L..
Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newsmag’ is closed to new topics and replies.