Skip to content

Instantly share code, notes, and snippets.

@seedprod
Last active September 13, 2017 12:53
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 seedprod/736b3eb61fbc321d48ae90c73f849177 to your computer and use it in GitHub Desktop.
Save seedprod/736b3eb61fbc321d48ae90c73f849177 to your computer and use it in GitHub Desktop.
<?php
// Set cookie of free user
add_action( 'wp', 'track_upsell' );
function track_upsell() {
if(is_page('ultimate-coming-soon-page-vs-coming-soon-pro')){
if(!isset($_COOKIE['seedprod_source'])) {
setcookie( 'seedprod_source', 'free_plugin|'.time(), strtotime("+1 year"),"/","seedprod.com" );
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment