woocommerce_order_downloads_table_show_downloads

woocommerce_order_downloads_table_show_downloads

Appears in:
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.8.5.1

apply_filters('woocommerce_order_downloads_table_show_downloads') is found 1 times:

  • /includes/wc-template-functions.php line 2750
    				 *
    				 * @param bool     $show_downloads If the downloads table should be shown.
    				 * @param WC_Order $order          The related order.
    				 */
    				'show_downloads' => apply_filters( 'woocommerce_order_downloads_table_show_downloads', ( $order->has_downloadable_item() && $order->is_download_permitted() ), $order ),
    			)
    		);
    	}
    }
    
    if ( ! function_exists( 'woocommerce_order_downloads_table' ) ) {