Skip to content

Instantly share code, notes, and snippets.

@Archie22is
Created July 30, 2025 07:32
Show Gist options
  • Save Archie22is/3249705b9e59495e2bf344fe2900f879 to your computer and use it in GitHub Desktop.
Save Archie22is/3249705b9e59495e2bf344fe2900f879 to your computer and use it in GitHub Desktop.
Wimmera Funerals Additional Settings | Contact Form 7
/**
* New Script
*
*/
document.addEventListener('wpcf7mailsent', function(event) {
if (event.detail.contactFormId == 'YOUR_FORM_ID') { // Optional: restrict to a specific form ID
var username = document.getElementsByName('username')[0].value;
var message = encodeURIComponent(document.getElementsByName('condolence-message')[0].value);
var newUrl = window.location.pathname + '?submitted=true&name=' + username + '&message=' + message;
window.location.href = newUrl;
}
}, false);
/**
* Deprecated script
*
on_sent_ok: "location = window.location.pathname + '?submitted=true&name=' + document.getElementsByName('username')[0].value + '&message=' + encodeURIComponent(document.getElementsByName('condolence-message')[0].value);"
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment