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

    Hello, how can I change the size of the Detail-Page of the portfolio to e.g. “original size” or “large”?

    Thanks, Alex

    #1330755

    Hey xela,
    Thank you for your patience and the link to your site, Try adding this code to the end of your child theme functions.php file 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'=>1500, 'height'=>1500 , 'crop' => false);
      return $size;
    }
    

    this will only take effect on new uploaded featured images, or you can use the thumbnail regeneration plugin

    Best regards,
    Mike

    #1330871

    thanks!

    #1330922

    Hi,

    Great, I’m glad that Mike could help you out. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1330956

    Thanks you can close it by now :)

    #1330994

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Portfolio Thumb’ is closed to new replies.