Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChromeOrange/914348c0e16cbf9b891b3a1ee2369789 to your computer and use it in GitHub Desktop.
Save ChromeOrange/914348c0e16cbf9b891b3a1ee2369789 to your computer and use it in GitHub Desktop.
Add product description to item name
add_filter( 'pdf_invoice_item_name', 'add_product_description_pdf_invoice_item_name', 10, 4 );
function add_product_description_pdf_invoice_item_name( $item_name, $item, $product, $order ) {
// Use $product->get_id() if you want to get the post id for the product.
$item_name .= '<p>' . $product->get_description() . '</p>';
return $item_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment