WP 5.9.1 Add order status to PDF
-
Im trying to add order status to the printed PDF but I cant figure it out. Ive tried many things but one of the two below I really thought would work. Can somebody help me please?
function bks_add_extra_field( $fields, $order ) { $new_fields = array(); //if( $order->get_status() ) { // $new_fields['status'] = array( // 'label' => 'Order Status', // 'value' => $order->get_status(), // ); // } if( get_post_meta( $order->get_id(), 'status', true ) ) { $new_fields['status'] = array( 'label' => 'Order Status', 'value' => get_post_meta( $order->get_id(), 'status', true ) ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'bks_add_extra_field', 10, 2 );
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘WP 5.9.1 Add order status to PDF’ is closed to new replies.