SOLVED ...
The thank you page has a URL which is slighlty different than the new registration page it comes from
new registration -> '
www.yourdoman.com/
index.php/1234';
thank you for registration -> '
www.yourdoman.com/
i
ndex.php/register/index?sid=1234';
I put in the TEMPKLATE OF THE SURVEY THE following code endpage.pstpsl the following code ...
It's not elegant, but if you need to do it once, it's ok as it applies only to the specific template.
First it gets the current url, if that is the one of the registration thank youpage, then it forces to redirect to the original new registration page it came from so to allow for a brand new registration to another custoemer ... Wait time is msec so 8000 = 8 seconds.
<script type="text/javascript">
var thispageurl =window.location.href;
var newregbaseurl = '
www.yourdoman.com/
index.php/1234';
var regthanksurl = '
www.yourdoman.com/
index.php/register/index?sid=1234';
regconfirmation= thispageurl.localeCompare(regthanksurl);
if(regconfirmation==0){
document.write("This page will go back to REGISTRATION HOME in few seconds");
setTimeout(function() {
window.location.replace(newregbaseurl);
}, 8000);
}
</script>