-
AuthorPosts
-
November 4, 2013 at 6:56 pm #184383
So, I first noticed your theme about couple of weeks ago, and thought it was awesome, but I’m happy I found it more than half an year after I started my wordpress homepage, because now I can appreciate how good it is!
So, I have a few questions about the featured images, before I switch totally my website to Enfold from my previous theme I had installed it to a test theme just to see how it works, and I was pretty happy! After I installed it finally on the main page, and tried to get it like the test one, some of the things just didn’t appear the same:
1. The featured image above the blog post, here is the same post in the test theme, and in the original theme
– Test Page Post
– Original Page PostYou can see that although the featured image is absolutely the same size, it appears in different way, is there any way to control that?
And one more thing there, below the post, there are thumbs of 5 related posts, the same thing happens there, on the test page they are squares, on the original rectangles!2. And another thing concerning the same thing, on the main blog view is that on the thumb on the test page it really fills the square, and on the original page it is not like that:
– Test Page
– Original PageI just wanna find out what might influence that difference so I know how to deal with them later!
3. Last thing for now to ask, is there a way to just disable the featured images from showing in the blog posts?
Best regards, and once again, awesome theme!
Ilko
November 5, 2013 at 1:49 am #184566Hi ilkoallex!
1.) You can control the featured image for blog post on functions.php, find this code:
$avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider
You can use this plugin to regenerate the thumbnails: http://wordpress.org/plugins/regenerate-thumbnails/
2.) Again, edit functions.php, make sure that you have this line of code:
$avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
Regenerate the thumbnails.
3.) Do you want to disable it on the single post view or the blog post overview? You can use this on your custom.css or Quick CSS:
Blog Overview:
.small-preview, .big-preview.single-big { display: none; }
Single Post:
.single .small-preview, .single .big-preview.single-big { display: none; }
Cheers!
IsmaelNovember 5, 2013 at 9:14 am #184686Thanks a lot for the quick reaction!
I tried the Regenerate Thumbnails plugin, but the sizes remained the same, guess something didn’t work properly!
I will definitely keep in mind that CSS codes, they are quite useful for someone like me who is just starting with them!
Actually there was another solution, which might help in my case, and it is reuploading the featured images, I tried it with couple of the posts, and it worked properly! And anyway since I’m gonna stick with this theme from now, I’d better optimize that stuff from now I think!
Yeah, I want to be able to remove the featured image from being shown in just some posts, I will try that code later and let you know if it worked!
Thanks again for the quick reaction!
Ilko
-
AuthorPosts
- The topic ‘About featured images’ is closed to new replies.