Image in Delivery note
-
I’ve add the code that i’ve found in the FAQ to add image to delivery note but functions.php generate an error in the server.
Are you sure that the code you’ve posted is ok?
function example_product_image( $product ) {
if( isset( $product->get_id() ) && ( ” !== $product->get_id() ) && has_post_thumbnail( $product->get_id ) ) {
echo get_the_post_thumbnail(
$product->get_id(),
array( 40, 40 ),
array( ‘loading’ => false )
);
}
}
add_action( ‘wcdn_order_item_before’, ‘example_product_image’ );
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.