Title: Image Missing
Last modified: April 20, 2022

---

# Image Missing

 *  Resolved [atelierdevs](https://wordpress.org/support/users/atelierdevs/)
 * (@atelierdevs)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/image-missing-13/)
 * When i click on print invoice, it shows all the details apart from the product
   image, I have updated to the latest update.
 * this is somthing that i believe use to work.
    -  This topic was modified 4 years, 1 month ago by [atelierdevs](https://wordpress.org/support/users/atelierdevs/).

Viewing 1 replies (of 1 total)

 *  [Moksha Shah](https://wordpress.org/support/users/mokshasharmila13/)
 * (@mokshasharmila13)
 * [4 years, 1 month ago](https://wordpress.org/support/topic/image-missing-13/#post-15580578)
 * Hello [@atelierdevs](https://wordpress.org/support/users/atelierdevs/),
 * For adding a thumbnail of the product image next to the title of all the products,
   please add the below code in your active theme’s functions.php file or using 
   a plugin like Code Snippets:
 *     ```
       function add_product_image( $product_name, $item ) {
       	$product_id    = $item['product_id'];
       	$product_image = wp_get_attachment_image_src( get_post_thumbnail_id( $product_id ) );
       	?>
       	<img src="<?php echo esc_url( $product_image[0] ); ?>" width="50" height="50" >
       	<?php
       	echo $product_name;
       } add_filter( 'wcdn_order_item_name', 'add_product_image', 10, 2 );
       ```
   
 * Regards,
    Moksha.

Viewing 1 replies (of 1 total)

The topic ‘Image Missing’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-delivery-notes/assets/icon-256x256.jpg?rev=2829362)
 * [Print Invoice & Delivery Notes for WooCommerce](https://wordpress.org/plugins/woocommerce-delivery-notes/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-delivery-notes/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-delivery-notes/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-delivery-notes/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-delivery-notes/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Moksha Shah](https://wordpress.org/support/users/mokshasharmila13/)
 * Last activity: [4 years, 1 month ago](https://wordpress.org/support/topic/image-missing-13/#post-15580578)
 * Status: resolved