Display Product Short Description on Packing Slip
-
Hello,
A while ago, someone here was kind enough to provide me with a snippet that allowed for my products short description to be displayed on my packing slips. The issue is the snippet does not seem to have an affect on my packing slips anymore. Here is the snippet:/** * PDF Invoices & Packing Slips for WooCommerce: * Display the product short description after the item meta (if not empty) */ add_action( 'wpo_wcpdf_after_item_meta', function( $document_type, $item, $order ) { if( ( $product = $item['product'] ) && method_exists( $product, 'get_short_description' ) && ( $description = $product->get_short_description() ) ) { echo "<div class=\"product-description\"><small>Description: {$description}</small></div>"; } }, 10, 3 );Thank you in advance!
The page I need help with: [log in to see the link]
Viewing 10 replies - 1 through 10 (of 10 total)
Viewing 10 replies - 1 through 10 (of 10 total)
The topic ‘Display Product Short Description on Packing Slip’ is closed to new replies.