• Resolved ACjennifer

    (@acjennifer)


    I need to be able to add some extra fields to the packing slip – the invoice has footer fields which I tried to use but these dont show on the packing slip.

    I specifically need: 1. check box or field for each product to indicate it was packed 2. a field next to each product for the packer to write down the product control number 3. a signature and date field (at bottom of page) for the packer to sign off when order was packed.

    Is there any way to do this with your plugin? I have 2 different clients who basically need this same thing.

    Thanks

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi acjennifer,

    We are sorry about your issue. Currently not possible to add custom fields on invoice and packing slip for each order in free version.

    Our Developer Team still working to improve new features.

    Regards

    Hi acjennifer

    You can add custom text on invoice and packing slip using the filter hooks here is the code example.

    add_filter( 'woo_invoice_product_data', 'woo_invoice_product_data_callback', 10, 3 );
    
    function woo_invoice_product_data_callback($product_data, $template, $orders){
    
    	if( 'packing_slip' == $template ){
    		$product_data[0]['title'] = 'Product Status: packed' ;
    	}
    	return $product_data;
    	
    }

    Regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add extra fields to packing slip’ is closed to new replies.