• Resolved chiragmahtani9

    (@chiragmahtani9)


    Hi , I’m using the pdf invoice plugin , I have posted the image code in the functions.php File on my child theme but yet images don’t appear in the PDF invoice !
    Please help! If possible can you upload a video on YouTube and record your screen to do the steps !

    Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support Upendra Kapse

    (@wpupen)

    Hi Chirag,

    Can you please confirm if you have added the below code snippet for adding the product image to the Invoice?

    function example_product_image( $product ) {	
        if( isset( $product->id ) && has_post_thumbnail( $product->id ) ) {
            echo get_the_post_thumbnail(
                $product->id,
                array( 40, 40 ),
                array( 'loading' => false )
            );
        }
    }
    add_action( 'wcdn_order_item_before', 'example_product_image' );

    It should have worked just fine. Please make sure that you add it at the end of the functions.php file of your active theme or you can also add it as a snippet using the Code Snippets plugin.

    Kind Regards,
    Upendra.

Viewing 1 replies (of 1 total)
  • The topic ‘[NSFW] Add images to order page’ is closed to new replies.