s10blazed
Forum Replies Created
-
It began working for me about 4 hours ago. I didn’t change anything but my notifications suddenly started coming in correct.
EDIT: It is working on my sites now
I am also anxious for a notification of when this bug fix rolls out. I have a handful of angry folks breathing down my neck.
- This reply was modified 5 years, 8 months ago by s10blazed.
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 Mail tags not wokringAre there any caveats to changing from managed to standard? I am also on IONOS and have been banging my head over this issue since their last forced update.
Forum: Plugins
In reply to: [Contact Form 7] On Sent Ok DOM Events for Multiple FormsSorry, I don’t know what trigger you mean. My users hit a submit button on a form and it takes them to the defined location.
The form is still setup the same as usual to be embedded within the form page. The location in the code above is where you land after clicking submit.
Forum: Plugins
In reply to: [Contact Form 7] On Sent Ok DOM Events for Multiple FormsI have found a way to do multiple forms. Here is the code I added to functions.php.
function mycustom_wp_footer() {
?>
<script type=”text/javascript”>
document.addEventListener( ‘wpcf7mailsent’, function( event ) {
if ( ‘1060’ == event.detail.contactFormId ) {
location = ‘https://fullsiteaddress.com/content/’;
}
}, false );
</script>
<script type=”text/javascript”>
document.addEventListener( ‘wpcf7mailsent’, function( event ) {
if ( ‘1080’ == event.detail.contactFormId ) {
location = ‘https://fullsiteaddress.com/content2/’;
}
}, false );
</script>
<?phpWhen I need to add a new form I just copy from <script type… to …</script> and change the contact form ID and the destination.
Forum: Plugins
In reply to: [Contact Form 7] Redirects no longer workingI am also looking for a method to direct individual forms to specific pages after a successful submission.
Our users fill in a basic form and get redirected to a page to download bid plans (PDF files).
Forum: Plugins
In reply to: [Contact Form 7] On Sent Ok DOM Events for Multiple FormsCan I use this method to redirect each form to a specific page after a successful submission? Instead of the example command of “ga( ‘send’, ‘event’, ‘Contact Form’, ‘submit’ );” I would like to use the proper portion of my current command of on_sent_ok: “location = ‘https://website.com/example/’;””
Would I just use the location = part?