Skip to content

Instantly share code, notes, and snippets.

@jevgen
Created February 24, 2017 20:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jevgen/f78acc925ba9e1e9212a3a6941db5888 to your computer and use it in GitHub Desktop.
Save jevgen/f78acc925ba9e1e9212a3a6941db5888 to your computer and use it in GitHub Desktop.
Set custom cookie upon completion of Gravity Form
function set_form_1_complete_cookie() {
setcookie( 'form-1-complete', 1, strtotime( '+30 days' ), COOKIEPATH, COOKIE_DOMAIN, false, false );
}
add_action( 'gform_after_submission_1', 'set_form_1_complete_cookie' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment