I'm at the point where I want to start adding callouts to my landing pages. I hate to ask but when I've searched the forums I've come up empty in terms of how to callout devices in landing pages.
I was wondering if someone could direct me to a tutorial or point me in the right direction?
What I'd like to be able to do is say "your HTC One ........." or even say things like "your city"
I'm using a CDN so I can't use php, but does anyone have tips on how to do it?
P.S I'm using
I just posted this thread earlier needing a bit of advice regarding this..but a bit more advanced than you need.
heres the basic code for
<head>
<script>
function getURLParameter(name) {
return decodeURI(
(RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1] || ''
);
}
</script>
</head>
<body>
<h1>Welcome to the <script>document.write(getURLParameter('keyword'))</script> quiz</h1>
</body>
The first things you should consider are:
1) What tracking system is being used
and
2) Where are your landing pages hosted.
These determine how you would most efficiently go about implementing a device callout.
The solution ploppythejailer posted will do the trick.
If your pages are php you could also use this :
<?php
$param=@$_GET['keyword'];
?>
Replace keyword with device, carrier , model or whatever you want to grab.
When it's time to show it in your code, place this <?=$param?> where you want to call out the variable.
Has anyone gotten city callout to work?
http://feedback.Voluum.com/knowledge...rticles/318335