Advertisement
verygoodplugins

Untitled

Aug 26th, 2021
1,191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. function check_download( $can, $download, $version ) {
  2.  
  3.     // Do stuff here
  4.  
  5.     if ( ! $can ) {
  6.  
  7.         add_filter( 'dlm_access_denied_redirect', function( $redirect ) use ( &$download ) {
  8.  
  9.             return wp_fusion()->access->get_redirect( $download->get_id() );
  10.  
  11.         } );
  12.  
  13.     }
  14.  
  15.     return $can;
  16.  
  17. }
  18.  
  19. add_filter( 'dlm_can_download', 'check_download', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement