• Resolved cpdesign123

    (@cpdesign123)


    Hi, I’m Using the Woocommerce PDF invoices plugin (by Bas Elbers) and need the invoices to display the main product category underneath the product title. Is this possible with a line of code? Does the premium upgrade support this?

    Thanks in advance!

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Bas Elbers

    (@baaaaas)

    You could use below sample action which adds the short description below the product title. If your are not convertible with coding I will be happy to help you out. Just shoot me an email.

    
    function add_description( $item, $order ) {
    	$product = $item->get_product();
            if ( $product ) {
    	    echo '<br>' . $product->get_short_description() . '<br>';
            }
    }
    add_action( 'wpi_order_item_meta_start', 'add_description', 10, 2 );
    
Viewing 1 replies (of 1 total)
  • The topic ‘Add product category under product title’ is closed to new replies.