Home › Forums › Basel support forum › Product images on cart page › Reply To: Product images on cart page
October 17, 2018 at 7:09 pm
#83390
Elise Noromit
Member
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