Skip to content

Instantly share code, notes, and snippets.

@yuliyang
Last active April 28, 2022 05:50
Show Gist options
  • Save yuliyang/2551704b89f81aaedfdb6de9014cf278 to your computer and use it in GitHub Desktop.
Save yuliyang/2551704b89f81aaedfdb6de9014cf278 to your computer and use it in GitHub Desktop.
[ Gravity Forms ] When confirmation message is displayed, send Facebook Pixel custom tracking
<?php
add_action('wp_footer', 'ching_gf_fbq' );
function ching_gf_fbq() {
// if show code on certain page
// if( ! is_page(123) )
// return;
?>
<script>
jQuery(document).ready(function(){
jQuery(document).on('gform_confirmation_loaded', function(event, formId) {
fbq('trackCustom', 'Newsletter');
});
})
</script>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment