WordPress – Display the order id and order date in WooCommerce My account downloads
I want to display the order ID, order date and product image in the My Account download page. add_filter( 'woocommerce_account_downloads_column_download-product', 'display_product_image_on_account_downloads' ); function display_product_image_on_account_downloads( $download ) { // Targeting view order pages only if ( ! is_wc_endpoint_url( 'downloads' ) )…