Hello, how can I change the size of the Detail-Page of the portfolio to e.g. “original size” or “large”?
Thanks, Alex
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
thanks!
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
Thanks you can close it by now :)
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