woocommerce_printable_order_receipt_data

woocommerce_printable_order_receipt_data

Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.9.5

apply_filters('woocommerce_printable_order_receipt_data') is found 1 times:

  • /src/Internal/ReceiptRendering/ReceiptRenderingEngine.php line 134
    		 * @returns array The updated set of data.
    		 *
    		 * @since 9.0.0
    		 */
    		$data = apply_filters( 'woocommerce_printable_order_receipt_data', $this->get_order_data( $order ), $order );
    
    		$formatted_line_items = array();
    		$row_index            = 0;
    		foreach ( $data['line_items'] as $line_item_data ) {
    			$quantity_data          = isset( $line_item_data['quantity'] ) ? " × {$line_item_data['quantity']}" : '';
    			$line_item_display_data = array(