How to create access to downloads when the order status is 'failed', Also, I want to put a series of other conditions for displaying or not displaying downloads, I came across these 2 hooks, I don't know if it is related to my problem or not :
function woocommerce_downloadable_file_permission_filter( $download, $product, $order, $qty, $item ) {
// filter...
return $download;
} add_filter( 'woocommerce_downloadable_file_permission', 'woocommerce_downloadable_file_permission_filter', 10, 5 );
and
function woocommerce_grant_product_download_permissions_action( $order_id ) {
// action...
} add_action( 'woocommerce_grant_product_download_permissions', 'woocommerce_grant_product_download_permissions_action' );