Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #644892

    Hi.
    I would like a squarer image (3:2) in single post page.
    Secondly, I’d like not to have a link (overlay or other) on the image.
    Below all the data.
    Thanks.
    Regards,
    Piero

    #644977

    Hi guys. Please, any help?
    Thanks.

    #645509

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .single .big-preview.single-big {
        pointer-events: none;
    }
    

    Then add following code to Functions.php file of your child theme in Appearance > Editor

    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'=>1210, 'height'=>560);
    return $size;
    }

    adjust the size as needed and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Yigit

    #645599

    Hi. Yigit, many thanks for your attention and magic advice.
    Sorry for my caution and ignorance, but to use “Regenerate thumbnails” I don’t risk to modifiy the other thumbnails too?
    It would be a nightmare!!!

    Cheers,

    Piero

    #645799

    Hi,

    No, since you will be changing only “entry_with_sidebar” image sizes, other image sizes will remain intact :)

    Best regards,
    Yigit

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