hi all,
i am using an iframe for my site to keep the design consistent for all screen resolutions, but one problem that has occured is when people will go to checkout, they get transferred to protx which is fine but they are still in my iframe, so no padlock or https.. So what i am after is to put a top target on the link that loads after the last checkout "next" button is pressed, so that it jumps out of the iframe.. i have tried modifying the OCCPROTXScriptTemplate.pl code, to the sample below, just adding a target = top ( i am in test mode by the way) but no joy! any ideas??
my $sPROTXURL = '';
if ($bTestMode) {
# $sPROTXURL = "http://localhost/";
$sPROTXURL = "https://ukvpstest.protx.com/" target="_top";
} else {
# $sPROTXURL = "http://localhost/";
$sPROTXURL = "https://ukvps.protx.com/";
}
i am using an iframe for my site to keep the design consistent for all screen resolutions, but one problem that has occured is when people will go to checkout, they get transferred to protx which is fine but they are still in my iframe, so no padlock or https.. So what i am after is to put a top target on the link that loads after the last checkout "next" button is pressed, so that it jumps out of the iframe.. i have tried modifying the OCCPROTXScriptTemplate.pl code, to the sample below, just adding a target = top ( i am in test mode by the way) but no joy! any ideas??
my $sPROTXURL = '';
if ($bTestMode) {
# $sPROTXURL = "http://localhost/";
$sPROTXURL = "https://ukvpstest.protx.com/" target="_top";
} else {
# $sPROTXURL = "http://localhost/";
$sPROTXURL = "https://ukvps.protx.com/";
}
Comment