track your downloads/files or create "funnel" tracking data
Posted: Fri Dec 11, 2009 5:56 pm
Here is a very simple example but you can go hog-wild on it, use a form and a little js to track a file download.. you could think of this as a miny download manager with stat collection... Great for client data, and that little extra to hand back with only 5 mins sunk in for that wow factor.
What you'll need:
FormBuilder
FormBrowser
I have provided the sample form for FB but the steps are basically..
1.)create FB form
2.)add the FormBrowser field
3.) add for too FormBrowser
3.) have the file link in the Submission Template
5.)Start collecting stats.. (granted you need to do the other normal FB/FBR steps and you should look at the form I provided)
working example...
http://www.visitnorthcentralidaho.org/testing.html
simple but you could do so much more with this... like password protect by forcing a use to be a FEU user... ie
then they could get to the link... you can add even more to protect it... some many things you could do here...
Now I'm using some js here (jQuery flav)
But you can use the meta tag or.. what ever you wish...
Cheers
jeremyBass
What you'll need:
FormBuilder
FormBrowser
I have provided the sample form for FB but the steps are basically..
1.)create FB form
2.)add the FormBrowser field
3.) add for too FormBrowser
3.) have the file link in the Submission Template
5.)Start collecting stats.. (granted you need to do the other normal FB/FBR steps and you should look at the form I provided)
working example...
http://www.visitnorthcentralidaho.org/testing.html
simple but you could do so much more with this... like password protect by forcing a use to be a FEU user... ie
Code: Select all
{assign var=userids value=$gCms->modules.FrontEndUsers.object->LoggedinId()}
{if $userids!=""}
{FormBuilder form='pdf test'}
{/if}
Now I'm using some js here (jQuery flav)
Code: Select all
if($('#DownloadThis').length > 0){
//alert($('#DownloadThis a').attr('href'));
window.open($('#DownloadThis a').attr('href'));
}
Cheers
jeremyBass