Last active
November 15, 2017 14:38
-
-
Save akkord87/446dd9a56985bad76bbeed4551d7f2ad to your computer and use it in GitHub Desktop.
Цели contact-form-7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/*----------------------------------— | |
* Редирект на страницу благодарности | |
------------------------------------*/ | |
add_action('wp_footer', 'redirect_sendmail'); #назвине функции | |
function redirect_sendmail() { #назвине функции | |
?> | |
<script> | |
document.addEventListener( 'wpcf7mailsent', function( event ) { | |
location = '<?php echo get_page_link( 213 ); ?>'; //Страница редиректа по ID | |
}, false ); | |
</script> | |
<?php | |
} | |
?> | |
<?php | |
/*---------------------------------------—-- | |
* Одиночная цель на событие отправки формы | |
-------------------------------------------*/ | |
add_action('wp_footer', 'contact_form_7_sendmail'); #назвине функции | |
function contact_form_7_sendmail() { #назвине функции | |
?> | |
<script> | |
document.addEventListener( 'wpcf7mailsent', function( event ) { | |
if ( '34' == event.detail.contactFormId ) { //ID формы | |
yaCounter46652697.reachGoal('zayvka'); //указать номер счетчика и цель | |
} | |
}, false ); | |
</script> | |
<?php | |
} | |
?> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment