Advertisement
chrishajer

{entry_time} merge tag by Richard

Feb 23rd, 2014
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. // Title: create a merge tag of {entry_time}
  2. // use a Hidden field and give it the value of {entry_time} you can then add the following code to your
  3. // theme functions.php file to replace that merge tag with the time on submission.
  4. add_filter( 'gform_save_field_value', 'replace_entry_time', 10, 4 );
  5. function replace_entry_time( $value, $lead, $field, $form ) {
  6.     $value = str_replace("{entry_time}", date("H:i:s"), $value);
  7.     return $value;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement