Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #844344

    Hello, I am using images with the dimensions of 1200×628 (for social media purposes). I’m using the Enfold blog layout of “Single Post with Big Preview Image (Featured Image).” The inherent dimensions of the preview in the them is less height, cause this to cut off the top and bottom of my images. I want the big preview image to show the full height.

    In the past I have searched these forums and found this CSS:

    .big-preview img {
    height: auto !important;
    width: 100% !important;
    }

    It has worked fine in the past but the last several weeks it has stopped working for some reason. You can see my recent posts do not have the full dimensions:

    But past posts do:

    Any idea what changed, why this is happening, and what I can do to fix? Thanks

    #844355

    Hey mmr1234,
    The difference I see between the old and new posts is the old one is using the srcset attribute and includes 7 image sizes, and the new one is not. Can you please include a admin login in the private content area so we can take a closer look.
    But first, please Try disabling your plugins to rule out a conflict.

    Best regards,
    Mike

    #844359

    Ok, thanks for reply. I’ve changed nothing. And my older posts are showing the feature image at the top of the blog posts with the full dimensions, so correct me if I am wrong but not sure how that could be a plugin conflict? This is happening on multiple websites I have with Enfold. Appreciate you taking a look, private message with admin access below.

    #845753

    Hi,

    Try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the entry_with_sidebar image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.
    Best regards,
    Yigit

    #845771

    Thanks, that worked well. For those with similar issue, I kept the width as listed and just add to the height, then select “no” to crop the image.

    Hate to have to use a plugin for this, especially consider the previous CSS entry worked fine. Any idea why it stopped working and is there a fix or built in function coming for this? Thanks!

    #846849

    Hi,

    You can add following code to your child theme’s functions.php file

    add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );
    function enfold_customization_modify_thumb_size( $size ) {
    $size['entry_with_sidebar'] = array('width'=>200, 'height'=>200);
    return $size;
    }

    adjust the size and regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/ then you can remove the plugin :)

    Best regards,
    Yigit

    #1421523

    Could you please advise me on where I can change the code so that the big preview image is not cropped but displays the full height? I don’t want to have to use the simple image plugin to adjust the image size since it is not being maintained. (but I can use one to regenerate the thumbnails. ) Thanks!

    • This reply was modified 6 months, 1 week ago by williamslyd.
    #1421591

    Hi,

    We can adjust the filter above to set the size of the featured images of entries without a sidebar. Please replace the filter with the following code.

    add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 );
    function avf_modify_thumb_size_mod( $size ) {
       $size['entry_with_sidebar'] = array('width'=>1600, 'height'=>9999);
       return $size;
    }

    If you require more assistance, please feel free to open another thread.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Featured Image Preview Size in Blog Post’ is closed to new replies.