Rakib Chowdhury
Rakib Chowdhury

Reputation: 11

How to print ordered prdouct images in woocommece pdf invoices plugin

I have an woocommerce site. I need to print product images on my generated pdf invoice. I don't want to buy premium plugin. I just want to simply print the product image in the invoice using foreachloop. But I dont have any plugin development skill. Is there any way to print product images in the invoice?

Upvotes: 0

Views: 188

Answers (1)

Williams
Williams

Reputation: 451

To show the product image you can try to use the following code, which you must add directly in the pdf invoice file template just below the product name.

<div class="product-img"><img src="<?php echo wp_get_attachment_url( $product->get_image_id() ); ?> " width="100" height="100" /></div>

Upvotes: 1

Related Questions