Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1350136

    How can I change the portfolio thumbnail size so the entire image appears when using Portfolio Grid? – https://doniliaswimwear.com/swimwear/

    I would like the this entire image to show in full – http://doniliaswimwear.com/wp-content/uploads/2022/05/2.1.jpg as the thumbnail instead. I am ok with the image being much taller in height

    #1350143

    Hi navindesigns,

    Thanks for giving us admin access.
    I added this code in your child theme’s functions.php code:

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

    and regenerated images on that size, please review your site.

    Best regards,
    Nikko

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