{"id":33909,"date":"2019-03-02T09:10:48","date_gmt":"2019-03-02T09:10:48","guid":{"rendered":"http:\/\/getshortcodes.com\/?post_type=docs&#038;p=33909"},"modified":"2019-03-25T18:13:29","modified_gmt":"2019-03-25T18:13:29","slug":"tracking-button-clicks-in-google-analytics","status":"publish","type":"docs","link":"https:\/\/getshortcodes.com\/docs\/tracking-button-clicks-in-google-analytics\/","title":{"rendered":"Tracking button clicks in Google Analytics"},"content":{"rendered":"\n<p>This article presents&nbsp;the example&nbsp;of JavaScript-code. The code should be placed in the main file of your&nbsp;current&nbsp;active theme scripts. If you don&#8217;t know where to paste JavaScript-code you can use a special&nbsp;<a href=\"https:\/\/wordpress.org\/plugins\/custom-javascript-editor\/\">plugin<\/a>.<\/p>\n\n\n\n<p>Don&#8217;t forget to connect Google Analytics on your website.<\/p>\n\n\n\n<p>It is recommended to add unique CSS-class to the shortcode you are going to track. You can make, for example, it in the following way:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><a href=\"https:\/\/getshortcodes.com\" class=\"su-button su-button-style-default my-custom-button\" style=\"color:#FFFFFF;background-color:#2D89EF;border-color:#246ec0;border-radius:5px\" target=\"_self\"><span style=\"color:#FFFFFF;padding:0px 16px;font-size:13px;line-height:26px;border-color:#6cadf4;border-radius:5px;text-shadow:none\">  Click Me <\/span><\/a><\/pre>\n\n\n\n<p>Now you can use the following JavaScript code:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">jQuery(document).ready(function($) {<br>  \/\/ Handle button click<br>  $('body').on('click', '.my-custom-button', function() {<br>    setTimeout(function() {<br>      \/\/ Track event in GA<br>      ga('send', {<br>        hitType: 'event',<br>        eventCategory: 'Buttons',<br>        eventAction: 'clicked',<br>        eventLabel: 'Shortcodes Ultimate Campaign'<br>      });<br>    }, 100);<br>  });<br>});<\/pre>\n","protected":false},"featured_media":0,"template":"","docs_category":[23],"class_list":["post-33909","docs","type-docs","status-publish","hentry","docs_category-customization"],"_links":{"self":[{"href":"https:\/\/getshortcodes.com\/api\/wp\/v2\/docs\/33909","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/getshortcodes.com\/api\/wp\/v2\/docs"}],"about":[{"href":"https:\/\/getshortcodes.com\/api\/wp\/v2\/types\/docs"}],"wp:attachment":[{"href":"https:\/\/getshortcodes.com\/api\/wp\/v2\/media?parent=33909"}],"wp:term":[{"taxonomy":"docs_category","embeddable":true,"href":"https:\/\/getshortcodes.com\/api\/wp\/v2\/docs_category?post=33909"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}