Snippi
A super awesome snippet tool.
- 1.
add_filter( 'gform_confirmation_5', 'custom_confirmation_message', 10, 4 );
- 2.
function custom_confirmation_message( $confirmation, $form, $entry, $ajax ) {
- 3.
$confirmation .= "<script>window.top.jQuery(document).on('gform_confirmation_loaded', function () { dataLayer.push('some code'); } );</script>";
- 4.
return $confirmation;
- 5.
}