Airpush Supercharge looks pretty awesome. For those of you who don't know, it basically auto fills a users phone number, email, etc, on the landing page for better conversions.
Although, it's a little confusing. It looks like you have to use your sub ids? If this is true, wouldn't this mess up your tracking?
Airpush doesn't have too much information on exactly how to use it, what they do explain is pretty brief.
Could anyone that uses Supercharge please explain exactly how you go about it? I'm sure this would help a lot of people.
Thanks!
Look at the SDK - you need to add some code to your landing page for it to work.
If you are an affiliate then you most probably don't have access to the landing page with the fields that can be pre-popped. The best you can do is to build your own and try and pass it on.
@deondup
Don't you just pass the info with some tokens in your sub ids in your link? I didn't think you had to do anything with the landing page.
All you have to do is capture the variables into the session, pass them to the links and it pre-pops the email address.
<?php
$email = $_GET['subid_email'];
$creativeid = $_GET['subid_creativeid'];
$phone = $_GET['subid_phone'];
$carrier = $_GET['subid_carrier'];
$country = $_GET['subid_country'];
$state = $_GET['subid_state'];
$city = $_GET['subid_city'];
?>
</head>
The post the echo into the "value" field on your form like this:
<input align="absmiddle" type="text" name="email" id="basic" value="<?PHP echo $email; ?>" data-mini="true" />
You can capture all the other variables and pass them the same way, only use type="hidden" in your input fields.
Example link to put into campaign on Airpush:
mydomain.com/index.php?subid_email=%email%&subid_campaignid=%ca mpaignid%&subid_creativeid=%creativeid%
Do that for all other variables.
From my experience so far, Supercharge only "works" for 40% of Airpush's users - for example, if I enable email, I only see 40% emails returned. The rest are blank; could be users have not sign-in to their google accounts on their android phones.