Hey guys,
Hope all is well!
In the STM mobile tracker I can see how you would rotate multiple offers, but how do you rotate between the direct link to the offer and a landing page?
I want it so that 50% of the traffic goes to the direct to the offer link and 50% goes to the landing page then the offer?
Thanks in advance!
This isn't something the STM-modded tracker offers natively, but you can rig it up - just make one of the landing pages a PHP file that is basically the LP code generated for it, with a redirect to the offer URL.
Then select this as one of the landers in the "get rotating lander option"
Landing page could look like this:
<?php
header ('Location: http://domain.com/tracking202/redirect/lp.php?lpip=123&'.$_SERVER['QUERY_STRING']);
?>