Bit.ly, which is what we integrate with in CoSchedule, uses a 301 redirect. One of the most commonly asked question was how to track links in WordPress using Google Analytics? If you’re linking from one site using Analytics to another using Analytics Google could record that relationship. Tracking Visits from Emails Tracking visitors that come from emails is simple enough if you use campaign tracking for each link. Add them with a slash before the URL in your address bar, and you're good to go. To view stats for your custom campaigns go to Google Analytics Reporting » Traffic » Sources » Campaigns and you will see something like this.
A short URL eliminates this problem. • People sometimes guess the domain name of sites they have not visited before; so pick a name that describes your blog, company or brand. Other link tracker software use only cookies, which severely limits what you can track and how you track. Often regular unshortened links may be aesthetically unpleasing. Maybe you find an interesting photo or song, or you want to refer people to another article someone else wrote.
The customized bit.ly version allows you to use your own domain name for branded short links which can be easily shared on Twitter, Facebook or other social media sites. When a visitor clicks on your tracking link, LinkTrackr places a cookie on the user’s computer, as well as generate a unique Click Tracking ID or CTID.
Every single email address links contains mailto: so this firing rule ensures that this tag only fires on clicks where links are “mailto” type email addresses. It depends on the amount of point of interest you need to track.
Click the name of the report you want to work with. This can be added to existing JavaScript files or in a script block as long as it’s loaded somewhere within the HTML body (ideally, just before the closing tag). jQuery (or your alternative) must be loaded first although the Google Analytics tracking code can appear anywhere on the page. /* Track outbound links in Google Analytics */ (function($) { "use strict"; // current page host var baseURI = window.location.host; // click event on body $("body").on("click", function(e) { // abandon if link already aborted or analytics is not available if (e.isDefaultPrevented() || typeof ga !== "function") return; // abandon if no active link or link within domain var link = $(e.target).closest("a"); if (link.length != 1 || baseURI == link[0].host) return; // cancel event and record outbound link e.preventDefault(); var href = link[0].href; ga('send', { 'hitType': 'event', 'eventCategory': 'outbound', 'eventAction': 'link', 'eventLabel': href, 'hitCallback': loadPage }); // redirect after one second if recording takes too long setTimeout(loadPage, 1000); // redirect to outbound page function loadPage() { document.location = href; } }); })(jQuery); // pass another library here if required The event is recorded with the category name ‘outbound’, action name ‘link’ and the value set to the URL of the outbound page. Include retargeting pixels in my links to build a fan list. Maybe you find an interesting photo or song, or you want to refer people to another article someone else wrote. Social media dashboard and notifications keeps me on top of what people are saying online about our brands. If it is a home PC, it would be safe to disable this service.Earlier, we wrote about how to install Google Analytics in WordPress, and we have received tons of questions from our users. Enabling Ad-hoc link tracking Configure your Adobe Analytics framework to enable ad-hoc link tracking. In this case you can use Google’s Disavow Link tool in Google Webmaster Tools to let Google know that you don’t approve of that link. From Google Event Tracking Guide Event Tracking is a method available in the ga.js tracking code that you can use to record user interaction with website elements, such as a Flash-driven menu system. For example, if you place a tracker on your website, then all of your users will be attributed to your mobile webpage. Sometimes a short URL is useful simply to give someone over a telephone conversation for a one-off access or file download, and no longer needed within a couple of minutes. Because we’re creating an event to track clicks on a specific type of link!