Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #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 Vorschaubild

    Wie 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 image

    How can I implement the options?
    Thank you.

    #1290983

    Hey 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:
    2021-03-28_170926.jpg
    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:
    2021-02-25_073213.jpg
    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:
    2021-03-28_173457.jpg

    Best regards,
    Mike

    #1293168

    Hi 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

    #1293826

    Hi,

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.