Hello,
You can simply add the data-redirect="https://your-website.com/thank-you.html" Attribute to the .contact-widget DIV to redirect the Form after successful submission.
Currently, Redirect Delay is not supported out of the box, but you can edit the following code in the js/functions.js File in the contactForm: function() Function Block:
[ch_pre type="js"]if( data.alert != 'error' && elementRedirect ){
window.location.replace( elementRedirect );
return true;
}[/ch_pre]
and replace it with:
[ch_pre type="js"]if( data.alert != 'error' && elementRedirect ){
setTimeout( function(){
window.location.replace( elementRedirect );
}, 3000);
return true;
}[/ch_pre]
This will definitely work fine. Hope this Helps!
We recommend updating to the Latest Versions of Canvas as Support for Older Versions are heavily limited to available features only.
Let us know if we can help you with anything else or if you find any further issues.