From cc68cd48c5a9651022c33c2d8531c0d2f97a85a6 Mon Sep 17 00:00:00 2001 From: Mike Jolley Date: Wed, 9 Dec 2015 11:36:09 +0000 Subject: [PATCH] Use post-thumbnail size to avoid srcsets Closes #9795 --- includes/admin/class-wc-admin-post-types.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/class-wc-admin-post-types.php b/includes/admin/class-wc-admin-post-types.php index a6180d6408a..74065660d0e 100644 --- a/includes/admin/class-wc-admin-post-types.php +++ b/includes/admin/class-wc-admin-post-types.php @@ -292,7 +292,7 @@ class WC_Admin_Post_Types { switch ( $column ) { case 'thumb' : - echo '' . $the_product->get_image( 'thumbnail' ) . ''; + echo '' . $the_product->get_image( 'post-thumbnail' ) . ''; break; case 'name' : $edit_link = get_edit_post_link( $post->ID );