Created
August 25, 2016 16:45
-
-
Save SeanChDavis/45bab3fb197baa3ff1b227c96646ef3f to your computer and use it in GitHub Desktop.
EDD Checkout Cart Thumb Size
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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