I would like to enlarge the images in my woocommerce site on the CART page only.
Currently, they display at 32x32 px, and I would like to go up to 100x100. I have adjusted the dimensions in Woocommerce>Settings>Catalog to reflect this, with no result. I have also regenerated my thumbnails to the new size, also with no effect on the cart.
When I look at cart.php, I see:
<!-- The thumbnail -->
<td class="product-thumbnail">
<?php
$thumbnail = apply_filters( 'woocommerce_in_cart_product_thumbnail', $_product->get_image(), $values, $cart_item_key );
printf('%s', esc_url( get_permalink( apply_filters('woocommerce_in_cart_product_id', $values['product_id'] ) ) ), $thumbnail );
?>
</td>
Is this where I should be adjusting the size? If so, how do I do it? If not, where should I look to adjust the sizes for these images?
Thanks!














