Add Campaign name and any other parameter (optional): Add the name of the campaign to differentiate between the different creatives you are running with that specific owned media source. It is specified in ISO 8601. analytics contains all the click statistics, broken down into the various time slices.
When this feature is used, links to your site that Sailthru includes in your email campaigns are wrapped in a redirect URL beginning with link.
GET THE FREE EMAIL COURSE Straight to your inbox Get the best email and digital marketing content delivered. More » Ow.ly Another popular alternative, Ow.ly is a link shortener from the leading social media application known as HootSuite. You should add this script in your page header, but not within the basic Analytics tracking code snippet. A lot of people and companies avoid using Google Analytics and other Google products out of fear that they're giving Google too much information. Undo Herbert Bay, Entrepreneur and Computer Vision guy Answered 143w ago The word "best" is very relative and depends on your needs.
Or maybe you’re using UTM tracking tags that make your link look ugly. For those who read their emails in a browser (like Yahoo Mail, Gmail, etc.), they would still need to have HTML turned on for it to work, and even then, the email client may restrict whether any scripts embedded in the email can execute.
Undo Undo URL Shortener @URL_Shorteners_ 11 Dec 2012 More 5 digital skills every should have. Cadcam Offices Copy • 9 months ago 20 Clicks Serve Promotional Material Unremarkably Questioned... See the URL insert method in the Reference document for more details. To add the source parameter, check the Add Source box. Before we answer that question, lets first talk about why would you want to track links in Google Analytics? Add X-Robots-Tag to my short links for granular control over how Google makes content available through search results. The best part of this shorner is that it allows you to be able to customize the ending of your link with almost any symbol.The end variable - in your example, the “KqzGgBhM5” - is a reference number that is checked against a database. 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.