RE: On the first screen you see here I have a very nice display – the one I expected to see – of the entry. This is what the template looks like when I’m in the WP Dashboard Settings for the template(I hope that makes sense). However, I don’t get this same display on the actual page (second screen shot).
The first screenshot shows a completely different template, not Slim Plus. It looks like the Default Template. The Slim Plus template has not yet been updated to support the Template Customizer.
I’ve taken a look at the image for “Advanced Eye Care of Covington” and the uploaded image is not sized as the FAQ says.
The original image has dimensions of 1052 x 382px. To get the image crop correct for Slim Plus you need to make the image taller. Using the FAQ…
( 120 / 100 ) * 1052 = 1262
So the new image size is 1050 x 1262px.
I’ve attached an updated image so you can see.
This might be easier… the default crop mode in Connections is centered weighted. It is a very common default in plugins and themes. Ideal for subjects in a photo is in the center; eg. profile photos.
This default crop mode can be change thru a bit of code:
Install the Code Snippets plugin and add a new snippet with this code:
function cn_output_default_atts_image_filter( $atts ) {
$atts['zc'] = 2;
return $atts;
}
add_filter( 'cn_output_default_atts_image', 'cn_output_default_atts_image_filter' );
Save and Activate the snippet to run on the site’s frontend only.
This will scale the image down and instead of center cropping, it’ll add white space to fit the image dimension.
Hope this helps!