Alternate and Custom Domains Do you love our service, but hate our domain name? HootSuite also allows you to view a dashboard that tracks clicks for each shortened link shared in the management system. Google Analytics does not track outbound links by default.
Authenticate your Google Analytics profile or enter UA-Code manually. Every blog and post on WordPress.com has a WP.me URL now. Services available include an ordinary, easy-to-say word as the URL with a lifetime from 5 minutes up to 24 hours, creation of a URL which will expire on a specified date or after a specified period, creation of a very-short-lived URL of only 5 characters for typing into a smartphone, restriction by the creator of the total number of uses of the URL, and password protection. If the link you are interested in is long (more than 60 characters), copy and paste the URL into a web page that creates a short link. Link farms were created and sold by shysters, and website owners fell for these deals and bought these links. TinyURL: This shortener use to be all over the internet; however, lately it has died down.
Services that don’t do this can end up being blacklisted on major websites which won’t allow links from such services to be displayed. You’d be able to see anytime someone who got your direct mail package in the mail, actually went to your website.
You can also right-click any highlighted section and choose Copy from the drop-down menu. It doesn’t work for any URL in the world, just WP.com-hosted ones. Conversion Tracking Try a Professional account to track sales, email signups, page visits and more with our easy to use conversion tracking option. Use remarketing links to repeatedly get my brands in front of interested eyeballs.
In this guide, we discuss: how to set up trackers, how to channel or redirect your users to various locations, how to create useful segments to analyze the performance of your campaigns, and how to plan and implement your campaign structure. You’d be able to see anytime someone who got your direct mail package in the mail, actually went to your website. Here’s Tom Scott to explain why YouTube will probably never run out of IDs. Professional marketers never sent traffic directly to their website or landing page. Configure short link HTTP status codes for best SEO results. Consider alternate extensions: If your top choice isn't available, consider using a country code TLD (ccTLD) such as .to or .co. But as Dave Winer articulated, there’s no reason we shouldn’t have a shortener ourselves, and here we are. 🙂 People are already using it. Undo Undo Shorten links ! @sqrl_in 2 Mar 2010 More Ten big ideas from TED - CNN.com - Thanks. 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.