ChanzGrande
Elite Member
- Feb 16, 2008
- 2,482
- 1,221
I noticed a lot of people sharing a similar challenge I've experienced when using GodCPA/Cakeslice to crop an offer. Specifically, the best way to blank your referrer is to actually open a DMR to your offer INSIDE the IFRAME spit out by cakeslice/GodCPA.
Unfortunately, if you do this the page will infinitely loop for virtually all IE browsers(I have not cross-tested anything else other than firefox).
I actually don't care about the other browsers as far as whether or not the cropped offer page works right because there just isn't enough traffic using anything other than IE/FF. With that said, you could easily adapt the suggestions I am going to give below to "browser detect" other browsers if you wanted to do so.
Anyway - on to the workaround.
What you will do is send your traffic to a page that will check to see if the browser is an IE browser, and if so, it will send the visitor to a standard DMR instead of going anywhere near your cropped IFRAME from cakeslice/GodCPA.
Here is the code:
Of course, you will want to substitute the correct URLs for your unique offer pages.
That's it. However, in order to ensure that you don't have FF browser heavy conversions on your offer, you should ensure that the offer you are promoting on your CROP is also present in the standard DMR. Otherwise, all your traffic and conversions will come from browsers other than IE...that will definitely look ODD to your AM.
I hope this helps, and if it does, feel free to donate some rep or a thanks or something.
Til next time BHW...
Unfortunately, if you do this the page will infinitely loop for virtually all IE browsers(I have not cross-tested anything else other than firefox).
I actually don't care about the other browsers as far as whether or not the cropped offer page works right because there just isn't enough traffic using anything other than IE/FF. With that said, you could easily adapt the suggestions I am going to give below to "browser detect" other browsers if you wanted to do so.
Anyway - on to the workaround.
What you will do is send your traffic to a page that will check to see if the browser is an IE browser, and if so, it will send the visitor to a standard DMR instead of going anywhere near your cropped IFRAME from cakeslice/GodCPA.
Here is the code:
Code:
<?php
$br = strtolower($_SERVER['HTTP_USER_AGENT']); // what browser they use.
if(ereg("msie", $br)) {
header("location: STANDARD-DMR-URL");
} else {
header("location: CROPPED-IFRAME-URL");
}
?>
Of course, you will want to substitute the correct URLs for your unique offer pages.
That's it. However, in order to ensure that you don't have FF browser heavy conversions on your offer, you should ensure that the offer you are promoting on your CROP is also present in the standard DMR. Otherwise, all your traffic and conversions will come from browsers other than IE...that will definitely look ODD to your AM.
I hope this helps, and if it does, feel free to donate some rep or a thanks or something.
Til next time BHW...