Hello Chris,
looking at the code used maybe the problem could be the different path for the tracking url.
Instead of use this:
| Code: |
<a href="http://wwwdev.thealliedgrp.com/images/Certifications/FS_546257.pdf" onclick="document.getElementById('trackdownload').src='/index.php? option=com_jrealtimeanalytics&track=1'">FS 546258</a><iframe id="trackdownload" style="display:none" src="/"></iframe>
|
try to match exactly the domain and the same url set for the custom url of the event in backend:
| Code: |
<a href="http://wwwdev.thealliedgrp.com/images/Certifications/FS_546257.pdf" onclick="document.getElementById('trackdownload').src='http://wwwdev.thealliedgrp.com/index.php? option=com_jrealtimeanalytics&track=1'">FS 546258</a><iframe id="trackdownload" style="display:none" src="/"></iframe>
|
thus trying to set the 'src' attribute with the full site path:
| Code: |
http://wwwdev.thealliedgrp.com/index.php?option=com_jrealtimeanalytics&track=1
|
instead of
| Code: |
/index.php?option=com_jrealtimeanalytics&track=1
|
John