02/10/2014 at 7:12 pm
#279665
Keymaster
@ Jeremy
Since Slim Plus requires a specific image size for its layout, it dynamically generates the images on the fly. So, this means the logo image settings in the admin will not have an effect. The image_width option you have set in your shortcode will not have an effect since it is not a valid option for Slim Plus. I suggest removing that option. With that said, I do have a solution.
Install the Code Snippets plugin. Create a new snippet with the following:
function kidwell_image_atts( $atts ) {
$atts['zc'] = 2;
return $atts;
}
add_filter( 'cn_output_default_atts_image', 'kidwell_image_atts' );
I hope that helps!
