-
AuthorPosts
-
March 23, 2021 at 6:31 pm #1289963
Hi.
english below…Bei den Einstellungen Blog-Layout “stil einzelner Beitrag” zu “Featured image size on single post” finde ich 3 optionen:
Einzelpost mit kleinem Vorschaubild
Einzelpost mit großem Vorschaubild (allerdings beschnitten)
Multi Autor Blog……Mir fehlen zwei weitere, sehr naheliegende Optionen:
– großes Vorschaubild (nicht beschnitten!)
und
– Kein VorschaubildWie kann ich die Optionen umsetzen ?
Danke.===
406 / 5000
Übersetzungsergebnisse
In the settings blog layout “style single post” to “Featured image size on single post” I find 3 options:
Single post with a small preview image
Single post with a large preview image (but cropped)
Multi author blog…..I am missing two other very obvious options:
– large preview image (not cropped!)
and
– No preview imageHow can I implement the options?
Thank you.March 28, 2021 at 11:37 pm #1290983Hey solf,
Sorry for the very late reply and thanks for your patience, as I understand your question you are looking at the theme options under the blog layout and these are the options:
the words but cropped or not cropped are not in the options so I’m assuming that you would like to submit a feature request?
In the meanwhile, you can adjust the images to not be cropped with the plugin Simple Image Sizes or you can use a function like this:add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 ); function enfold_customization_modify_thumb_size( $size ) { $size['gallery'] = array('width'=>845, 'height'=>684 , 'crop' => false); return $size; }
and adjust to suit, or you can edit the functions.php file to add or remove the “crop” function:
and then and regenerate your thumbnails
But this will effect all images that size and will not give you an option that you can turn on or off, as you request.
Your last question is an option on the post page in the sidebar:
Best regards,
MikeApril 8, 2021 at 5:47 am #1293168Hi Mike,
I’ve tried giving this method a try to allow all my existing blog featured images to be full size instead of cropped. I’ve tried using the Simple Image Sizes plugin but must not be configuring it correctly. Any assistance would be great.
Thanks
April 12, 2021 at 4:21 am #1293826Hi,
Thank you for the inquiry.
using the Simple Image Sizes plugin
If the plugin is still enabled, you should be able to adjust the default size of the “entry_with_sidebar” thumbnail in the Settings > Media panel. Make sure that the adjusted dimension have the same aspect ratio as the uploaded image, and make sure to regenerate the images after the adjustment, or upload the image again.
Best regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.