Advertisement
wclovers

Untitled

Dec 31st, 2021
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. add_filter( 'wcfm_is_allow_my_account_store_order_pdf_invoice_download', function( $allow ) {
  2.     if( is_user_logged_in() ) {
  3.         $user = wp_get_current_user();
  4.         if( in_array( 'customer', $user->roles ) || in_array( 'subscriber', $user->roles ) ) {
  5.             $allow = false;
  6.         }
  7.     }
  8.     return $allow;
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement