Hello friends.
If i understand it right, Propeller passing only zone id info, and it doesn't have any other tokens available. (correct me if i am wrong)
So, if you need a certain info to get shown to a user on LP, like device name, or city name, how do you do that?
Thanks
mrbraun has a good tutorial on how to do that right here http://stmforum.com/forum/showthread...ut-POP-traffic!
Yeah man, for city name you can use PHP:
Put this in your header, before </head>
<?php
$t=time();
$ip = $_SERVER['REMOTE_ADDR'];
$details = json_decode(file_get_contents("http://ipinfo.io/{$ip}"));
?>
So it will look like this: https://gyazo.com/2eca9bf8d8a1b8fbdbc8487757620741
Then place this wherever you want the city name to appear: <?php echo $details->city; ?>
It will even blend in with text normally, it's pretty neat.
Not too sure how to do device type with code, but if you sign up to purelander.com you can get that on your LP, that's what I used. I'm not affiliated with them in anyway btw.