Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created September 14, 2013 21:18
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 theukedge/6565728 to your computer and use it in GitHub Desktop.
Save theukedge/6565728 to your computer and use it in GitHub Desktop.
<?php
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