Home Forums Basel support forum Product images on cart page Reply To: Product images on cart page

#83390

Hello,

Thank you very much for choosing our theme and for contacting our support.

Please find the code in basel/woocommerce/cart/cart.php

if ( ! $product_permalink ) {
	echo wp_kses_post( $thumbnail );
} else {
	printf( '<a href="%s">%s</a>', esc_url( $product_permalink ), wp_kses_post( $thumbnail ) );
}

and replace it with this snippet:

if ( ! $product_permalink ) {
	echo $thumbnail;
} else {
	printf( '<a href="%s">%s</a>', esc_url( $product_permalink ), $thumbnail );
}

Best Regards