Advertisement
verygoodplugins

Untitled

Feb 11th, 2021
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. function custom_wpf_status_check( $apply_tags, $status, $subscription ) {
  2.     if ( 'active' == $status && !wpf_has_tag( 'Clienti - Ordine Completato - Identificazione Effettuata', $subscription->get_user_id())) {
  3.         return false;
  4.     }
  5.  
  6.     return $apply_tags;
  7.  
  8. }
  9.  
  10. add_filter( 'wpf_woocommerce_subscription_status_apply_tags', 'custom_wpf_status_check', 10, 3 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement