Using it for spamming or illegal purposes is forbidden and any such use will result in the TinyURL being disabled and you may be reported to all ISPs involved and to the proper governmental agencies. In some cases, the political or cultural aspects of the country in charge of the top-level domain may become an issue for users and owners,[4] but this is not usually the case. As my day commenced I started to realize that I was getting smarter by the minute. For example, say you are using UTM codes to track website traffic. But now I have the option to make special mistake-proof short links for print purposes. Its e-commerce platform is simple, yet efficient.” — Marketing Director, Sony World Photography “We leverage Eventbrite’s data capture functions to help with marketing initiatives.
Add Tracking to Your Regular Email Campaign To add Google Analytics tracking to a regular email campaign in MailChimp, follow these steps. Create a new regular email campaign. It is very important to know which URL shortening service to go for. The second condition makes sure that we’re not capturing any relative links that typically looks like href="/some-url-path". If you already have Google Analytics code inserted in to your WordPress blog, remove that code. You can copy the link by pressing and holding the link and then select copy from the options that will pop out. It’s a pain, but the outbound link tracking code shown below won’t work without it. (It could be made to work with legacy Analytics, but it’ll eventually stop working so it’s best to upgrade now.) Custom Event Tracking Analytics supports event tracking.
As an example of how link tracking works, if your site’s domain is example.com, your link domain might be set to link.example.com. Consider alternate extensions: If your top choice isn't available, consider using a country code TLD (ccTLD) such as .to or .co. In the background, Analytics sends data by requesting an image beacon. Don't use your company name: URL shorteners can also be formed from product names, words common to your industry, slogans or even slang. With TinyURL, you can also make a smaller URL that will work for any page on your site.
Even if you currently do not intend to track specific creatives or targeting, it may be worthwhile to allow space for it. The Google Analytics campaign title combines the MailChimp campaign title with the date to make it easy to search for in your Analytics dashboard. Add Tracking to Your Automated Email Campaign To add Google Analytics tracking to an automated email campaign in MailChimp, follow these steps.
95 per ticket) plus 3% merchant processing per transaction. We recommend choosing only one type of Google Analytics tracking. Linda Vecvagare, Digital Marketing Manager (2016-present) Answered 31w ago I use Google Analytics, and I have used Bitly but recently switched to Capsulink because it offered better price deal for the most important features. That limits your ability to do roll-up and drill-down reporting. It’s very simple interface will allow you create custom URLs so that it’s not just a random mix of letters and numbers if you want. bit.ly/0a0b0c0 TinyURL: Another one of the first, if not the first URL shorteners for Twitter. 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. Other Helpful Macros If you have sites that you frequently link out to or have partnerships with, you might want to roll up the click events by domain name. Google’s Developer Docs explain further how to obtain the client ID.