ここで私の問題:分析でイベントを追跡するコードを配置しましたが、イベントは分析に送信されません...したがって、それらを追跡できません。
ここにコード(私はUNIVERSAL ANALYTICSを使用しています)
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-46738558-1', 'restaurant-mon-repos.fr');
ga('send', 'pageview');
</script>
これで、コードが私のページに挿入されました。
ページ上のさまざまなアクションに対して、さまざまなボタンでさまざまなイベントを追跡することに注意してください。
$op .= '<ul class="cro_directionscal">
<li class="dir-label">' . __('To:','localize') . '</li>
<li><strong>' . stripslashes($postaddr) . '</strong></li>
<li class="dir-label">' . __('From:','localize') . '</li>
<li><input id="from-input" type=text value=""/></li>
<li><input id="to-input" type=hidden value="' . stripslashes($postaddr) . '"/></li>
<li><input id="driveclick" class="" onclick="Demo.getDirections();ga("send","event","Bouton","Clic","itineraire");" type=button value="' . __('Calculate:','localize') . '"/></li>
</ul>
<p>' . __('The driving directions are interactive. Click on any bold text for further explanation of the route.', 'localize' ) . '</p>
<div id="dir-container"></div>';
他のトラッキング用のコードの 2 番目の部分:
$op .= '<input type="submit" onClick="ga("send","event","bouton","clic","contact");" name="cro_form_sub" id="cro_form_sub" val="" . __("Submit","localize") . "">';
ダッシュが問題かどうかはわかりません...
みんな助けてくれてありがとう:)