Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // WP Fusion Exctra class Filter
- function custom_wpf_query_args( $query_args, $method ) {
- if( 'get_contact_id' == $method ) {
- $query_args['q'] = str_replace( 'Email', 'Email__c', $query_args['q'] );
- }
- return $query_args;
- }
- add_filter( 'wpf_salesforce_query_args', 'custom_wpf_query_args', 10, 2 );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement