Conversion or Registration Tracking?

trizz

Active member
Is there a method to track user conversions / registrations via either tracking pixels or postbacks as users proceed through the registration funnel on a xF forum?

Im trying to find a simple yet solid method of gauging the effectiveness of certain types of advertising traffic to a given forum, ie adwords, FB ads, direct media buys, etc. But need to track the conversion of these users to find out what is best.

Any tips out there?
 
If you use Google Analytics, you can just set up goals for whatever actions you want to track.
I've been trying for weeks - can you provide the specific regular expression to do this successfully? It would be greatly appreciated.

Other things I've tried:
Inserting the Adwords script into the page container like this:

Code:
    <xen:if is="{$contentTemplate} == 'register_process'">
    <!-- Event snippet for Forum Registration from Search Ad conversion page -->
    <script>
      gtag('event', 'conversion', {
          'send_to': 'AW-blahblah/bG1KCJW2x4ABEK6zhcAD',
          'value': 1.0,
          'currency': 'USD'
      });
    </script>
    </xen:if>

I'm not a proggrammer - just web-surfing and trying what I find. Thanks!

M
 
Last edited:
Top Bottom