Announcement

Collapse
No announcement yet.

Contact Form Bounce Page

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Contact Form Bounce Page

    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.

    #2
    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),
    - Change the 5 to 0

    Then find the line

    Code:
    $::g_sContentUrl, $::g_pSetupBlob, $::Session->GetLastShopPage(), %::g_InputHash, $::FALSE);
    Change it to read:
    Code:
    $::g_sContentUrl, $::g_pSetupBlob, 'http://yoursite/redirectpage.html', %::g_InputHash, $::FALSE);
    Save and Exit. Update and test it. Would suggest you backup your site and the script file in specific before trying the workaround.

    Regards,
    Robert

    Comment

    Working...
    X