Advertisement
wclovers

Untitled

Jul 4th, 2023
823
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. add_filter( 'wcfm_is_allow_view_customer', function($allow) {
  2.     global $wp;
  3.  
  4.     if (isset($wp->query_vars['wcfm-enquiry-manage']) && !empty($wp->query_vars['wcfm-enquiry-manage'])) {
  5.         $allow = false;
  6.     }
  7.  
  8.     return $allow;
  9. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement