Hi, i am wondering is it possible to remove the post images from the main page? I would like that on main page to have just title and inside the post the image. Is there a code wich needs to be deleted?
You can hide featured images by adding these lines of CSS inside Appearance >> Theme Options >> Other >> Custom CSS.
.blog .single-featured,
.archive .single-featured {
display: none;
}
Another solution is to remove those images from content.php
file completely. Images will be still displayed on single post view. These are the line that you need to remove:
<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" >
<?php the_post_thumbnail( 'sparkling-featured', array( 'class' => 'single-featured' )); ?>
</a>
Let me know if this helps.