Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1182312

    Hi there,

    I managed to display the images in my catalog in square and to change their size.
    However, the images now look very blurry.

    Link to the page in the private area.

    Thanks in advance!

    #1182627

    Hey quistict,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    Best regards,
    Victoria

    #1183377

    Credentials added in the private content area

    #1183759

    Hi quistict,

    It’s blurred because the image size for square is too small, please add this code at the bottom of your functions.php:

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

    Then regenerate the images or simply re-upload the images.
    Hope this helps.

    Best regards,
    Nikko

    #1185713

    Thanks, you may close this topic! :D

    #1185729

    Hi quistict,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

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