Advertisement
palsushobhan

wcfm-show-only-verified-vendors-on-store-list

Jun 14th, 2024 (edited)
574
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.59 KB | None | 0 0
  1. add_filter('wcfmmp_vendor_list_args', function($args, $search_data) {
  2.     $args['meta_query'][] = array(
  3.         array(
  4.             array(
  5.                 'key'     => 'wcfm_vendor_verification_data',
  6.                 'value'   => 's:19:"verification_status";s:7:"approve";',
  7.                 'compare' => 'LIKE',
  8.             ),
  9.             array(
  10.                 'key'     => 'wcfm_vendor_verification_data',
  11.                 'value'   => 's:26:"social_verification_status";s:7:"approve";',
  12.                 'compare' => 'LIKE',
  13.             ),
  14.         ),
  15.     );
  16.     return $args;
  17. }, 10, 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement