Skip to content

Instantly share code, notes, and snippets.

@MindyPostoff
Last active September 27, 2015 13:44
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MindyPostoff/1d3384c6bf787345bbdd to your computer and use it in GitHub Desktop.
Save MindyPostoff/1d3384c6bf787345bbdd to your computer and use it in GitHub Desktop.
Display product featured image in cart instead of variation thumbnail
// Add this to your child theme's functions.php file
function wc_custom_cart_thumb( $thumb, $cart_item ) {
return get_the_post_thumbnail( $cart_item['product_id'], 'shop_thumbnail' );
}
add_filter( 'woocommerce_cart_item_thumbnail', 'wc_custom_cart_thumb', 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment