By default, ActiveConversion will capture information from any form filled out, other than login forms and basic website search forms.
Exclude a form
Occasionally there are forms you don't want added to your prospect information, like online calculators or complex catalogs.
In these cases, your webmaster just needs to add ac_ignore in the form class to exclude it from tracking.
<form ... class="ac_ignore">
To only capture certain forms
You might have an e-commerce site or complex catalog where you want to exclude most forms from tracking, and only capture information from a few.
To only capture select forms, ask your webmaster to do the following:
- Add ac_detect_form = false; to the ActiveConversion tracking code just before </body>
<!-- START OF ACTIVECONVERSION CODE -->
<script type="text/javascript" language="javascript">__pid=xxxxx; ac_detect_form=false;</script> <script type="text/javascript" language="javascript" src="//live.activeconversion.com/ac.js "></script>
<!-- END OF ACTIVECONVERSION CODE --> - Add the ac_track as a CSS class for forms you want to capture
<form ... class="ac_track">