Advertisement
verygoodplugins

Untitled

Feb 28th, 2020
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. // WP Fusion Exctra class Filter
  2. function custom_wpf_query_args( $query_args, $method ) {
  3.  
  4.     if( 'get_contact_id' == $method ) {
  5.  
  6.         $query_args['q'] = str_replace( 'Email', 'Email__c', $query_args['q'] );
  7.  
  8.     }
  9.  
  10.     return $query_args;
  11. }
  12.  
  13. add_filter( 'wpf_salesforce_query_args', 'custom_wpf_query_args', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement