Advertisement
verygoodplugins

Untitled

Feb 17th, 2023
959
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. function set_custom_pipedrive_app( &$crm ) {
  2.  
  3.     $crm->client_id     = 'XXX';
  4.     $crm->client_secret = 'YYY';
  5.  
  6. }
  7.  
  8. add_action( 'wpf_crm_loaded', 'set_custom_pipedrive_app' );
  9.  
  10. function custom_pipedrive_auth_url( $url ) {
  11.  
  12.     $args = array(
  13.         'client_id' => 'XXX',
  14.     );
  15.  
  16.     return add_query_arg( $args, $url );
  17.  
  18. }
  19.  
  20. add_filter( 'wpf_pipedrive_auth_url', 'custom_pipedrive_auth_url' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement