Advertisement
designbymerovingi

Auto populate gravit form log entries

Jun 17th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. /**
  2.  * Auto Populate GravityForm Log Entry
  3.  * @version 1.0
  4.  */
  5. add_filter( 'mycred_run_this', 'mycredpro_prepopulate_form_log', 10, 2 );
  6. function mycredpro_prepopulate_form_log( $run_this, $request ) {
  7.  
  8.     // Only applicable for gravity form submissions
  9.     if ( $run_this['ref'] == 'gravity_form_submission' )
  10.         $run_this['entry'] = 'Points for submitting a form';
  11.  
  12.     return $run_this;
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement