Can anyone tell me how I can change the bounce page for the contact form? I would like my customers to be directed to a "Thank You" page after submitting their enquiry.
Announcement
Collapse
No announcement yet.
Contact Form Bounce Page
Collapse
X
-
Robert_Taylor
The bounce page is a common layout and the text comes from Design | Text Phase: -1 Id: 23. I'm not sure if the bounce page itself can be removed and replaced with a custom page. The workaround would be to reduce the bounce delay to 0 and then redicted it to your custom page.
To do this,
- Go to \Program Files\Actinic v8\Sites\Site1 (or equivalent) and find the file MailForm.pl.
- Right click to open in a text editor like Notepad.
- Find the line :
Code:@Response = ACTINIC::BounceToPageEnhanced(5, ACTINIC::GetPhrase(-1, 1962) . $sError . ACTINIC::GetPhrase(-1, 1970),
Then find the line
Code:$::g_sContentUrl, $::g_pSetupBlob, $::Session->GetLastShopPage(), %::g_InputHash, $::FALSE);
Code:$::g_sContentUrl, $::g_pSetupBlob, 'http://yoursite/redirectpage.html', %::g_InputHash, $::FALSE);
Regards,
Robert
Comment