You can also log into your Buffer account on the web or by downloading the mobile app to track your analytics and see how many clicks that your links have gotten. I'm sure there are also better ways this can be done, so if you have your own way of doing it please leave me some comments below!Link tracking is what seperates the men from the boys in online advertising. You might be listing them all on your site's main page and linking them to the relevant content page. I hope this article has helped you understand a little more about how URL shortening works. Creating the External Link Tracker The last step is to send the link click event, along with the anchor text and URL, to Google Universal Analytics.
However, we don’t want to exclude any href that starts with 2 slashes because those are usually fully qualified absolute URLs that are trying to be protocol relative (typically sites that have both HTTP and HTTPS experiences). In the sidebar click on Content » Events » Top Events. Your decision should depend on whether you need simple shortened URL or you require an in-depth approach.Own Your Short Links on Twitter bit.ly offers URL shortening and link tracking services. Simply enter your long URL and click the Shorten button. All you have to do is enter your destination URL, and give your tracking link a name. We help Affiliates to monitor, compare and optimize all their online marketing campaigns in one place and decide what is working and what is not.
In April 2009, TinyURL was reported to be blocked in Saudi Arabia.[27] Yahoo! Affiliate sub ID parameters are often used to store non-unique values from the publisher's tracking system, in some cases to forward to an advertiser. We do this by providing your business with a video-reviews platform and a star-rating widget.
After you click on “Edit” you can change your slug to match whatever keywords (2-5 words are best) you are focusing on in the post. To search for name spaces Search four directory levels down from the last directory. 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. When used this way, all user activity on such elements is calculated and displayed as Events in the Analytics reporting interface. A summary of this traffic is found in your Google Analytics reporting under Traffic Sources. You can always view clicks over a period of 24 hours, a month, and a custom date range.
If you already have Google Analytics code inserted in to your WordPress blog, remove that code. It can take up to 36 hours from sending a campaign to see analytics results in the MailChimp campaign report. Professional marketers never sent traffic directly to their website or landing page. White labeling lets me present a positive picture of our company as clients see our agency logo when they login to create URLs. Two types of URLs • Static URLs get content directly from server files and always stay the same unless a webmaster purposefully changes an html file. • Dynamic URLs get content from templates + databases.