Viewing 3 replies - 1 through 3 (of 3 total)
  • This would be neat! Good idea.

    1. Copy the Template files from woocommerce to your theme
    2. Open up review-order.php
    3. search for

    <tr class="<?php echo esc_attr( apply_filters( 'woocommerce_cart_item_class', 'cart_item', $cart_item, $cart_item_key ) ); ?>">
    							<td class="product-name">

    4. insert the following code

    <?php								$thumbnail = apply_filters( 'woocommerce_in_cart_product_thumbnail', $_product->get_image(), $values, $cart_item_key ); echo $thumbnail;
    ?>

    did it for my shop: example: http://etensi.de/kasse

    and how do i link back to that product? i want to wrap the provided php in a link tag.. so if you click the image, you will go back to that product?

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘How to show product image @ checkout page’ is closed to new replies.