Viewing 1 replies (of 1 total)
  • Plugin Author Steven

    (@shazahm1hotmailcom)

    The Slim Plus template will create images it requires on-demand to maintain the design.

    The best option will be to change the default zoom/crop mode with an action:

    add_filter( 
    	'cn_output_default_atts_image', 
    	static function( $atts ) {
    
    		$atts['zc'] = 2;
    
    		return $atts;
    	}
    );

    Install the Code Snippets plugin, add the code above as a new code snippet, and activate it.

    I hope this helps; please let me know.

Viewing 1 replies (of 1 total)
  • The topic ‘Thumbnail Cropping, ignoring the image settings’ is closed to new replies.