04/17/2015 at 1:35 pm
#331632
Keymaster
@ Anna
Excerpt Plus will scale the image to fit the smallest dimension and crop the excess image on the larger dimension. This crop is centered weighted meaning the crop will be taken of the sides evenly rather than one side or the other. This crop mode can not be easily changed without delving into PHP code. This crop mode was chosen for this template because of the intent of being used for a photo of an individual which are mostly centered weighted portrait photos.
If you want to try to change the default crop mode used in Connections by dipping into PHP, here’s how:
Install the Code Snippet plugin.
Add a new snippet with the following code:
function anna_image_atts( $atts ) {
$atts['zc'] = 2;
return $atts;
}
add_filter( 'cn_output_default_atts_image', 'anna_image_atts' );
Save and activate the new snippet.
Hopefully this explains the difference clear enough.
