10 years ago
Hello, I wrote an email but I have not received a reply.
I have a problem with the images of the post.
I would like to highlight that the image in the post to have two different sizes, small and in the article on the home page instead of the original size.
What should I do?
Also I no longer have the option to save after clicking on customize.
Thank you!
Support Team
10 years ago
Hi!
You should make some changes in the file content.php in the theme folder.
Find code
<?php the_post_thumbnail('post-thumbnail', array('class'=>$settings['layout']['fimage_position'])); ?>
and replace it with
<?php
if (!is_single()) {
the_post_thumbnail('post-thumbnail', array('class'=>$settings['layout']['fimage_position']));
} else {
the_post_thumbnail('full', array('class'=>$settings['layout']['fimage_position']));
}
?>