Yet many are retracing their steps and playing clean up. A total of five parameters are automatically appended when you enable Google Analytics: utm_campaign: will automatically be the name of the campaign as it appears in Sailthru. utm_medium: will automatically be “email”. utm_source: will automatically be “Sailthru”. utm_term: will automatically be the name of the sending list as it appears in Sailthru. utm_content: if you are sending an AB Split or AB Winner or Auto Winner Campaign, this utm parameter will be added to your links. But I find this to be in the common order of usage for my own needs. HootSuite also allows you to view a dashboard that tracks clicks for each shortened link shared in the management system. 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. Each time a contact clicks a link in the campaign, the tracking information redirects them through MailChimp's servers and sends them to the intended web address.
Find related extensions in the Social & Communications collection. Bitly is a link shortner that has some click statistics built in it. Publishers using the publisher interface can also generate tracking links using features similar to those available in this panel.
Undo Undo URL Shortener @URL_Shorteners_ 17 Dec 2012 More Have you experimented with promoted tweets on ? Search four levels down from the root on each local fixed drive.
The distributed link tracking service tracks link sources for shell shortcuts and OLE links within NTFS file system volumes. 8Tracking third-party app stores Particularly on Android, you are able to distribute your app via multiple different app stores, not limited to the Google Play Store.
For example: Bitly is one of the most popular link shortening services, and the one we prefer to use with CoSchedule. Tracking Visits from Emails Tracking visitors that come from emails is simple enough if you use campaign tracking for each link. Set Your Own Expiration Dates Want your links to automatically expire on a specific date? AdFly: Another interesting shortener is AdFly, because it allows you to monetize on your URL shortener. Twitter users are used to using URL shortener to share links of news, blogs and so on since they only have space of 140 characters to share something. Add TinyURL to your browser's toolbar Click and drag the following link to your links toolbar. The second condition makes sure that we’re not capturing any relative links that typically looks like href="/some-url-path". Maybe you want a simple URL to put in a print add, or want to be kind to mobile readers of your content.