Advertisement
wclovers

Untitled

Oct 26th, 2023
865
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter( 'wcfm_is_allow_cancel_membership', function($allow, $vendor_id, $wcfm_membership_id ) {
  2.     if ( '979436' == $wcfm_membership_id ) {
  3.         $allow = false;
  4.     }
  5.     return $allow;
  6. },10, 3);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement