Hello! I need help fast, please!! I have this bits of code:
<script>
fbq(‘track’, ‘form_submit’);
</script>
<script>
gtag(‘event’, ‘form_submit’);
</script>
<!-- Event snippet for form_submit conversion page
In your html page, add the snippet and call gtag_report_conversion when someone clicks on the chosen link or button. -->
<script>
function gtag_report_conversion(url) {
var callback = function () {
if (typeof(url) != ‘undefined’) {
window.location = url;
}
};
gtag(‘event’, ‘conversion’, {
‘send_to’: REDACTED,
‘event_callback’: callback
});
return false;
}
</script>
and i would like to track the submit button on forms that are put on certain landing pages. How can i implement them, as i don’t see any boxes regarding the submit button where i could put code, neither in the stand alone form editor, or the landing page editor.
Any suggestions, please? I want to mention i don’t have acces to behavioural events in my current plan, and i would like a workaround method