Home Forums WordPress Themes – Premium Pure & Simple Remove images Reply To: Remove images

#21248
Sushil Adhikari
Moderator

Hi there,

After you copied blog-style.php template in child theme[Directory: sitefolder->wp-content->themes->puresimple-child->partials->blog-style.php], there you can find

the_post_thumbnail()

[Most probably on line no-28 ] function where you need to replace this function with this code

if ( !is_category()) { 
the_post_thumbnail();	
}

Note: If you’re not technically sound in WordPress, we suggest you to take help of a developer otherwise you will be in trouble.

Thanks