Home / Admin / Checkout Cart Thumbnail Size
Duplicate Snippet

Embed Snippet on Your Site

Checkout Cart Thumbnail Size

Adjust the dimensions of the product thumbnails displayed in the checkout cart.

Code Preview
php
<?php
function edd_custom_change_checkout_thumb_image_size( $dimensions ) {
	$dimensions = array( 60, 60 ); // array( width, height ) in pixels
	return $dimensions;
}
add_filter( 'edd_checkout_image_size', 'edd_custom_change_checkout_thumb_image_size' );

Comments

Add a Comment