Cách 1: Chuyển hướng về trang cảm ơn dùng plugin
Redirection for Contact Form 7
CÁCH 2: Chèn Code không dùng Plugin
Cách chèn code cho theme flatsome Ta vào Flatsome -> Advanced -> Global Settings -> FOOTER SCRIPTS và dán những đoạn code bên dưới vào và những cách khác để chèn code bạn xem chi tiết ở video mình cũng nói rất rõ các cách chèn
1. Chuyển hướng 1 form về 1 trang cảm ơn
/*Code copy dán vào phần footer hoặc header (Code chuyển hướng về 1 trang)*/
<script type=”text/javascript”>
document.addEventListener( ‘wpcf7submit’, function( event ) {
if (event.detail.status==’mail_sent’){
location = ‘https://onlysharefree/thank-you’; //Thay thành link bạn muốn chuyển hướng
}
}, false );
</script>
/*Code tương tự đơn giản hơn không kiểm tra điều kiện*/
<script>
document.addEventListener( ‘wpcf7mailsent’, function( event ) {
location = ‘http://example.com/’; //Thay thành link bạn muốn chuyển hướng
}, false );
</script>
2. Chuyển hướng nhiều form về nhiều trang khác nhau
/*Code copy dán vào phần footer hoặc header (Code chuyển hướng về từng trang khác nhau)*/
<script type=”text/javascript”>
document.addEventListener( ‘wpcf7submit’, function( event ) {
if ( event.detail.contactFormId == ‘1’ && event.detail.status==’mail_sent’) { //Thay 1 thành ID của form 1
location = ‘https://onlysharefree.com/thank-you-1’; //Thay thành link cần chuyển hướng
}
if ( event.detail.contactFormId == ‘2’ && event.detail.status==’mail_sent’) { //Thay 2 thành ID của form 2
location = ‘https://onlysharefree.com/thank-you-2’; //Thay thành link cần chuyển hướng
}
}, false );
</script>
Xem thêm hướng dẫn tại trang Contact Form 7
https://contactform7.com/dom-events/
I am currently perfecting my thesis on gate.oi, and I found your article, thank you very much, your article gave me a lot of different ideas. But I have some questions, can you help me answer them?