Last active
April 28, 2022 05:50
-
-
Save yuliyang/2551704b89f81aaedfdb6de9014cf278 to your computer and use it in GitHub Desktop.
[ Gravity Forms ] When confirmation message is displayed, send Facebook Pixel custom tracking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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