Skip to content

Instantly share code, notes, and snippets.

@vovafeldman
Last active April 8, 2021 16:53
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vovafeldman/a19a6c92838dcaa416ec7063a01dc6c9 to your computer and use it in GitHub Desktop.
Save vovafeldman/a19a6c92838dcaa416ec7063a01dc6c9 to your computer and use it in GitHub Desktop.
Freemius Purchase Completion JavaScript Callback Filter
<?php
// Add GA tracking only if user opted-in OR if non-WP.org compliant product.
function my_after_purchase_js( $js_function ) {
return 'function ( response ) {
/**
* Since the user just entered their personal & billing information, agreed to the TOS & privacy,
* know they are running within a secure iframe from an external domain, they implicitly permit tracking
* this purchase. So initizlizing GA here (after the purchase), is legitimate.
*/
ga('create', 'UA-XXXXXXX', 'auto');
console.log("checkout", "purchaseCompleted");
}';
}
function my_checkout_enrich ( $html ) {
return '<script type="text/javascript">
(function() {
if ( null == ga ) {
// Add code to include GA.
}
})();
</script>' . $html;
}
my_freemius()->add_filter('checkout/purchaseCompleted', 'my_after_purchase_js');
my_freemius()->add_filter('templates/checkout.php', 'my_checkout_enrich');
?>
@brjosue73
Copy link

@hqwebs This might be a silly question, but where should I add this code?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment