Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Created August 25, 2016 16:45
Show Gist options
  • Save SeanChDavis/45bab3fb197baa3ff1b227c96646ef3f to your computer and use it in GitHub Desktop.
Save SeanChDavis/45bab3fb197baa3ff1b227c96646ef3f to your computer and use it in GitHub Desktop.
EDD Checkout Cart Thumb Size
<?php // DO NOT COPY THIS LINE
function sd_change_checkout_thumb_image_size( $dimensions ) {
$dimensions = array( 60, 60 );
return $dimensions;
}
add_filter( 'edd_checkout_image_size', 'sd_change_checkout_thumb_image_size' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment