any software vendor using a 3rd party shopping cart

Size: px
Start display at page:

Download "any software vendor using a 3rd party shopping cart"

Transcription

1 Version last updated: August 2010

2 The Analytics industry has evolved a great deal since the last version of this book. Tools got better & faster including amazing features like Segmentation or Intelligence that many users didn t even think of. Google Analytics is no exception, being considered by many the leading tool for web analysts. This ebook looks at the best ways software vendors and developers can use Google Analytics to gain actionable data. We are going to focus on 4 issues: Setup Google Analytics (GA) for your website; Define goals for your website and online activity; Get all your sales data in your Analytics tool and see what makes them grow; Identify what drives the sales for your web business and how Most of the implementation steps in this document are generally applicable to any software vendor using a 3 rd party shopping cart. However, some tricks are based on features designed specially by Avangate for the software vendors using the Avangate ecommerce Platform. 2

3 Table of Contents 1. Setup Google Analytics for your website Define objectives for your website and online activity Tracking downloads and downloaders Tracking users that get to the shopping cart Tracking sales Analytics and User Behavior Tracking how many trial users buy your product Segmenting is pure gold How much does a Download value to you? Cool tools to go along with Google Analytics Great Blogs to Follow Great Books to Read

4 1. Setup Google Analytics for your website When it comes to tracking software ecommerce websites, a few hacks need to be put up in place in order for Google Analytics to fully understand your website s traffic. The main issue is that users find details about your product on your website and when they decide to buy, are sent from your website to a third party shopping cart in order to finish a purchase. Teaching Google Analytics that it is the same user who interacts with your website and then with the shopping cart, as part of a single process of purchasing a software product, will give you lots of actionable data and lots of insights. These can be very helpful in emerging future strategies for growing your business. Just think about how cool it would be to know how different segments of users behave on your shopping cart, like from organic searches compared to paid searches, and why some have a bigger shopping cart abandonment rates than others. Don t have Google Analytics installed yet? All you need to do is go to and login with your Google Account. If you don t have one, just create a new account. All you ll need to do is to add your website to Google Analytics, which in exchange will provide a tracking code. 4

5 Google Analytics was the first product in the industry to introduce asynchronous tracking which has no to little effect on your website loading times. This ebook covers all the steps needed in order to switch to the new tracking code. So the first and most important step to start tracking the performance of your website is to install the tracking code on your website. However, because you will need to do a little bit more complex installation, you will have to perform a small detour before. On the tracking code that is provided, look for a code line that looks like this: _gaq.push(['_setaccount', 'UA-XXXX-XX']); In case you already have the Google Analytics code installed, look in the source code of your website for the tracking code or any of the lines: var pagetracker = _gat._gettracker("ua-xxxx-xx"); or _gaq.push(['_setaccount', 'UA-XXXX-XX']); Software vendors using the Avangate ecommerce Platform can login to the Avangate Control Panel account and access the Web 5

6 Analytics page which is part of the Marketing Tools section in the left menu. Here is what you should get: Figure 1 Web Analytics integration feature in the Avangate Control Panel Copy your Google Analytics ID (UA-XXXX-XX) code in the first provided field (Step 1). At Step 2, the Avangate platform will supply you with the code that needs to be installed on all your pages within your website, just before the </head> tag. Learn more. Important Note: If you have already installed the tracking code on your website, please replace it with the one provided through Step 2 of the Avangate CPanel Web Analytics Wizard. If you use other 3 rd party shopping carts, place the following code in both your website as well as the shopping cart pages: 6

7 <!-- google analytics --> <script type="text/javascript"> var _gaq = _gaq []; _gaq.push(['_setaccount', 'UA-XXXXXX-XX']); _gaq.push(['_setdomainname', 'none']); _gaq.push(['_setallowlinker', true]); _gaq.push(['_setallowhash', false]); _gaq.push(['_trackpageview']); (function() { var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = (' == document.location.protocol? ' : ' + '.googleanalytics.com/ga.js'; var s = document.getelementsbytagname('script')[0]; s.parentnode.insertbefore(ga, s); })(); </script> <!-- /google analytics --> Important Note: Don t forget to replace the UA-XXXX-X with your Google Analytics ID. Make sure you add the tracking code on all pages of the website in order to avoid any errors or inaccuracies in the gathered data. Here is a cool tool to check if all your pages have Google Analytics tracking code installed properly: You can also try the WASP tool crawling option to check how well the tracking code has been installed. 7

8 2. Define objectives for your website and online activity When you started your business you surely had some goals on your mind. Think of them and try to find the indicators that would make you say Hey, this is what I wanted! What we are going to ask you now is to project your business goals into Metrics and KPI (Key Performance Indicators) that can be measured with Analytics tools. A metric is a measured value. For example, the number of visitors, the bounce rate and the time spent on site are metrics. A KPI (Key Performance Indicator) is a metric that echoes organizational goals. It is decided by the company management and not some analytics tool, providing context and leads to action. For a software company, a possible KPI can be: the number of downloads, the number of trial users that buy a product or the number of software users that look on the website for support. Check out the Big Book of KPIs for more details. 8

9 3. Tracking downloads and downloaders Now that you have Google Analytics installed, finding how many users click on a download link is not that difficult. You can go one step further and track the behavior of users that download your product as well. This method is specially created for all those websites where clicking the download button directly starts the download. We do recommend having Thank You for Downloading pages which are very easy to track (just place the standard Google Analytics tracking code on the pages), but for those of you who don t intend to do that, here is what you can do in 4 easy steps to track downloads: Step 1: Adding some code Add the following code between <head> and </head> on all your website pages on which the download can be initiated. <script type="text/javascript"> function setiframe() { var aviframe = document.getelementbyid('av_iframe').innerhtml = '<iframe src ="/software_download.html" style="border:none;width:1px;height:1px;" marginheight="0" marginwidth="0" frameborder="0"></iframe>'; } </script> 9

10 Step 2: Modify the download button or link Add the following code to all your download links or buttons: onclick="settimeout(setiframe, 2000);" For example if your download link is: <a title="download" href="download/software.exe">download Now</a> modify it to: <a title="download" onclick="settimeout(setiframe, 2000);" href="download/software.exe">download Now</a> Step 3: Add some more code to your website This time add it directly after the download button. It s a hidden div with no content in it, so no need to worry about SEO issues. onclick="settimeout(setiframe, 2000);" 10

11 Step 4: Create a file called software_download.html directly in your website root Inside this file you can put all the tracking codes you want. Google Analytics, Google AdWords, anything. The idea is that when a user starts a download, this file is loaded and tells your tracking tools that a certain user just started a download. <script type="text/javascript"> function setiframe() { var aviframe = document.getelementbyid('av_iframe').innerhtml = '<iframe src ="/software_download.html" style="border:none;width:1px;height:1px;" marginheight="0" marginwidth="0" frameborder="0"></iframe>'; } </script> Now, the tracking codes Well, as I have told you at the beginning, you can track downloaders. What does this mean? It means that every time a user downloads your software, a certain label is attached to that user, so every time she comes back to your website, you will know about it. And more, you ll be able to understand their behavior on your website and most important: How many of them end up buying your software? 11

12 All you have to do is to add an enhanced version of the Google Analytics Code in the software_download.html file you have just created on your website root folder. The code should look like this: <script type="text/javascript"> var _gaq = _gaq []; _gaq.push(['_setaccount', 'UA-XXXXXX-XX']); _gaq.push(['_setdomainname', 'none']); _gaq.push(['_setallowlinker', true]); _gaq.push(['_setallowhash', false]); _gaq.push(['_setcustomvar', 5, 'Downloader', 'English Trial', 1]); //label people who download the product _gaq.push(['_trackpageview','/downloads/software/']); (function() { var ga = document.createelement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = (' == document.location.protocol? ' : ' + '.googleanalytics.com/ga.js'; var s = document.getelementsbytagname('script')[0]; s.parentnode.insertbefore(ga, s); })(); </script> (replace UA-XXXX-XX with your Google Analytics Tracking ID) 12

13 If the above implementations are a little bit too complex for you, you can always go the simple way. However, the amount of data which will be available in Google Analytics will only be limited to how many people clicked the download link on your website. Just add the following JavaScript for the "on click" event of the download triggering link: <a href=" onclick="javascript: _gaq.push(['_trackevent', 'Trial downloads', 'Download']);"> All you have to do now is to go in your Google Analytics Account, where you will be able to see all the data in the Content > Event Tracking reports area: 13

14 4. Tracking users that get to the shopping cart By tomorrow, all your download data will be available in Google Analytics. How about sales? Well, as sales come through a third party shopping cart (Avangate ecommerce Platform), we decided to help you with sales data through our Web Analytics wizard, accessible in the Avangate Control Panel. Mainly, there are 2 important steps that need to be followed, but let s go inside Google s mind and understand the process that needs to happen in order for the tracking to be accurate. Google needs to understand that the same user who has been in your website continued his session in the Avangate Shopping Cart. Google also needs to understand where your visitor came from. Without any hacks, Google will see your own website as the referrer for a certain sale, this way being of no help to you. First of all, make sure you have the right tracking code on your website. If you haven t modified your tracking code with the one provided by the Avangate CPanel Web Analytics section, please do so now. 14

15 Secondly, you need to have the tracking code installed on the shopping cart. How to do that? It s simple: add exactly the same code you have added to your website within all your shopping cart templates files, just as stated by Step 3 or the Avangate Web Analytics Wizard. In order to do this, go to your template files by quick searching for templates, as shown in the image. Figure 3 Getting to Interface Template Files by using quick Search. Once inside this section, access all the template files you have created for your shopping cart and add the tracking code just as shown in the image below. 15

16 Please make sure all the template files have the tracking code installed, as leaving only one file aside can create accuracy problems in the data you receive. At this point, Google Analytics is prepared to understand that the user who enters your shopping cart is the same with the one that just left your website. We are just one step away. Google Analytics works with first party cookie settings, so in order to help him understand what really happens, we need to help him copy the data from the cookie within your website to the cookie that is set by Google Analytics on the Avangate platform. Fortunately, Google provides a little hack to make this work. 16

17 In order to help Google get all the data about your visitors, you need to add the following code to all your Buy Now links or any other links that send the user to your shopping cart pages. If your Buy Now link looks like this: <a href=" Now</a>, it should be modified in order to look like this (add the onclick Javascript action): <a href=" onclick="_gaq.push(['_link', this.href]); return false;">buy Now</a> If you are using forms in order to send users to the shopping cart, you need to modify your forms source code to look like this (add the onsubmit Javascript action): <form name="name" method="post" onsubmit="_gaq.push(['_linkbypost', this]);"> The above hack helps Google Analytics (GA) copy all the user details from your websites cookie to the cookie set up on the shopping cart. Now, Google Analytics knows that it is dealing with the same user and it will know all the details about that user: where did she come from, how many times she has visited the website, what pages she has seen etc. If a user finishes a transaction, GA will be able to correlate that transaction to all that data about that specific user. 17

18 5. Tracking sales This step is the one that probably many of you are most interested in: How can Google tell you the profit that a certain keyword or referrer is bringing you? Knowing this will definitely help you find out how to better invest your budgets in your marketing campaigns. Will it be Paid Advertising, organic SEO or maybe getting as many reviews from bloggers as possible? This is the moment to find out. First of all, you need to let Google Analytics know that you are an ecommerce website so it will activate this function for you. In order to do this, login to your Google Analytics account, click the edit setting link for your website, access the editing profile settings and activate ecommerce tracking, just as shown in the image below. 18

19 Figure 5 Activating ecommerce tracking in Google Analytics All you need to do is to get back to the Avangate Control Panel and add the following code to your After Sale Message section: <script type="text/javascript"> _gaq.push(['_addtrans', myorder.refno, // Order ID myorder.idaffiliate, // Affiliation myorder.totalpriceusd, // Total myorder.taxusd, // Tax myorder.shippingusd, // Shipping myorder.city, // City myorder.state, // State myorder.country // Country ]); for(i = 0; i < myorder.productsinorder.length; i++) { _gaq.push(['_additem', myorder.refno, // Order ID myorder.productsinorder[i].id, // SKU myorder.productsinorder[i].name, // Product Name myorder.productsinorder[i].category, // Category myorder.productsinorder[i].priceusd, // Price myorder.productsinorder[i].quantity // Quantity ]); } _gaq.push(['_tracktrans']); </script> 19

20 The After Sale Message section was designed by Avangate in order to customize the way the Thank you for purchasing page will be displayed to the user. All the code added to this page will be executed only when a user will finish a purchase. The After Sale Message area can be found under Marketing Tools or by just typing after sale in the quick search box. Once entered, copy the following code (as provided in the last step of the Web Analytics wizard) in your After Sale Message box (see figure 8): Figure 6 (up) Identifying the AfterSale messages section in the Avangate Control Panel. Figure 7 (left) The customized tracking code for ecommerce tracking provided in the Web Analytics sections of the Avangate Control Panel. 20

21 Figure 8 The customized Google Analytics tracking code inside the After Sale Message; it must be placed above any other code in the page. You will get all the data within your Google Analytics Account. The ecommerce section in Google Analytics is active and is gathering data from your sales. Just after a few days of transactions, you ll be able to see something very similar to the following report: 21

22 22 Figure 9 ecommerce Reports as seen in Google Analytics.

23 6. Analytics and User Behavior At this point, everything is in place for gathering all the data from your website and shopping cart, but just owning the data is not going to boost up your sales. You must get actionable insights from your data, like: I need to treat differently trial users from new users. Google organic searches are bringing me lots of traffic but few conversions. Maybe it s time to focus on other keywords. Lots of users exit through the Terms and Conditions page. Maybe there is something wrong with it. All the users having Java Script disabled bounce, as they cannot access the website. Please note that the insights are unique for every website and software business, so the above are just pure examples. On the following chapters we will focus on answering as many possible questions like the ones above. The answers should provide solutions for improving your website and boosting your sales. 23

24 What is you conversion rate for purchases? When you started your online business, you probably had many goals in mind, but there is one we are sure we can guess: Increase your sales. It s time to see real time how this happens, so you don t have to wait till the end of the year or the semester to see how you are doing. A valuable report you ll get is to see why your sales increased and decreased over time. Maybe we are running a bit too far, as Google Analytics will never be able to answer the Why question, but it will give the hint towards the guilty factors. From there, answering the Why question is just a matter of testing or observation. So, let s set up the first Conversion Goal tracking in Google Analytics. Go to your website profile settings and, under the Conversion Goals and Funnels section, click the Add goal link: 24

25 Setting up Purchase Conversion Goals For purchases, a conversion will occur every time a user ends up on the Finish Purchase page on your shopping cart. Here is how you set up a Conversion Goal: Figure 11 Setting up a Goal for tracking completed purchases The Goal URL should be: \/order\/finish.php(.*) 25

26 Important Note: If you are a vendor selling software through Avangate, just fill in the fields exactly as shown in the image above. Here is where we go a step further. Wouldn t it be nice to find out how many users enter your shopping cart, through which page they enter and where do some of them abandon the shopping process? To do this, you need to set up the funneling. Follow the instructions, just as shown in fig. 12: Figure 12 Setting up funneling steps for monitoring abandonment rate through the Avangate shopping cart The steps in the above image are: \/order\/checkout.php(.*) \/order\/payment.php(.*) \/order\/verify.php(.*) 26

27 Note: leaving the Required Step checkbox unchecked will insure that you will get data on all the users entering the shopping cart, no matter what the entry point is. Otherwise, the funnel will only show the visitors coming through the Step 1. Having this done, a brand new report is going to be generated under your website s Analytics data. Click on the Conversion Goals menu item under your website reports and you will get a report that looks like this: Figure 13 Goals overview in Google Analytics Special attention should be paid to the Funnel Visualization chart for the purchase goal, where cart abandonment will be easy to understand. 27

28 28 Figure 14 Funneling overview for completed transactions in Google Analytics

29 Setting up Download Conversion Goals As the number of downloads is going to be an important performance indicator, here is how you setup a conversion goal for downloads: Figure 15 Setting up goal conversion tracking for software downloads. For better understanding on how to create Goals for your website for different actions, we recommend accessing the Google Analytics Documentation center and the Google Support Group. 29

30 Even More Value There is even more to understanding the value of your traffic. A special metric, called $index, has been implemented by Google. You will notice it as it s included in your content overview reports, just as shown in the image. Figure 16 The $index metric under the Top Content report in Google Analytics Here is a very good explanation of this metric: To summarize, $index tells us the value of a page that a user visits before landing on a goal page. That value is determined like this: (Goal value (if assigned) + ecommerce value) / Total number of visits on that page. At this point, Google Analytics can track your ecommerce transactions, which means that $index will automatically be 30

31 calculated for all the pages on the websites that users visit before buying. But another goal of your website is to increase the number of downloads. It would be great to find out which pages within your website are most valuable for creating downloads. You can deal with it in 2 ways. The easy but not so accurate way: give the value of 1 dollar (or whatever value you consider right) for every finished download. The little bit more difficult but much more accurate way: calculate how much a download values for you and setup that value for the goal. How do you do that? The following chapter is going to focus on this. What did we get so far? ecommerce tracking in place. Your sales data will be available in Google Analytics and not only that: you ll be able to know which of your online campaigns (banner or link exchange, PPC or organic keyword, blogger or download website) is bringing you most profit. Conversion Goals tracking for purchases and downloads. You know what pages within your website are most responsible for triggering purchases. 31

32 Shopping cart abandonment rate monitoring. You can make customizations on the pages where the users abandon the shopping cart in order to decrease this rate. Sometimes, even a small change of colors and layout can improve the user experience so she doesn t get lost in the process. 32

33 7. Tracking how many trial users buy your product We currently know how many downloads and sales occur. You would think that just dividing the number of downloads to the number of sales would come up with the conversion rate for download to buy. Well, why not be sure of it? You might be surprised by the actual data and being surprised is a good thing in this case. Knowing for sure will help you make the right decisions for improving things. No matter how good they are, they can always be better. One way to do it is to build special links or a special landing page for all the users that come through buying links within your software. The special link method has usability advantages, as users can be taken directly to the shopping cart, without any intermediate pages. In order to differentiate your buyers that come directly from your software product, a few parameters need to be added to the shopping cart link. It is important to make sure that this method does not interfere with your shopping cart functionality. Google offers a 3-step wizard for building the special links. By the third step, the application will generate a new link: 33

34 Figure 17 Create special links with Google Link Builder for tracking buyers coming from your software product. If you already use special links for users coming directly from the software links or buttons, include the above parameters. The Traffic Sources Overview "pie chart" from the Google Analytics default dashboard shows you the number of users that came directly from your software - they can be found among those labeled as "Other". What if you already use special parameters to identify users coming from your software? In this case, in order to leave the links intact and get actionable data immediately, make a 301 redirect for all the users coming from your software to the same link, but with the parameters in the image above included. 34

35 8. Segmenting is pure gold Having special links with tracking codes in your trial software kits or designated landing pages for the users that click the Buy Now button within the software is easier said than done. There is another way to track how many people that downloaded your software actually managed to buy it. Google Analytics now supports segmentation, so it can build reports on the fly just for a specific segment of traffic. The segment we are after: a segment of traffic of people who downloaded the trial. The quest: How many of them buy? Check out this video tutorial on how to create your first segment, if you are new to it. So, if you have done the above download tracking implementations, here is how your segment setup should look like: 35

36 Once you apply the segments, all the reports in Google Analytics will be limited only to the data about the people that downloaded your product. You can see from their referrers how many of them bought from you and after how many days. Segments are pure gold and we encourage you to play with them as much as possible. You can segment based on any metric you can think of. 9. How much does a Download value to you? Having ecommerce tracking activated, Google Analytics can report now the amount of money that comes into your account from all the sales. Divide that amount with the total number of downloads, and you will get exactly the value of a download for your business. Take this number and put it in the Goal Value box for Download Conversions you set up earlier. Make sure to make this update for all your profiles. 36

37 10. Cool tools to go along with Google Analytics WASP WASP is the Web Analytics Solution Profiler, a specialized Firefox extension aimed at web analysts and web analytics implementation specialists, who want to do quality assurance and understand how their web analytics solution is implemented. It s a great plug-in that will help you debug any issues that might appear in your websites tracking. We also recommend their blog, which has great resources. Google Website Optimizer This is a tool provided by Google; you have to register or sign in before using it. It s an easy-to-use tool for testing site content that delivers actionable results to increase your conversion rate. Google Website Optimizer s strong asset is that it allows you to carry out loads of tests at the same time for: headlines, images, prices, offers and buttons. By means of Website Optimizer, you can obtain significant increases of the website conversion rates, of the time spent on your website and last, but not least, an increase of your visitors satisfaction with the website. But what does this tool really do? The answer is... testing in two ways: Run A/B experiments (compares the performance of entirely different versions of a page) 37

38 Run multivariate experiments (compares the performance of content variations in multiple locations on a page simultaneously) Lately, several Google Website Optimizer authorized companies appeared on the market. Future Now has really valuable resources on how to use Google Optimizer on their blog, Grokdotcom. For instance the 10 Minute Guide to Testing with Google Website Optimizer (PDF) is a very nice list with the most important things about this tool. We also recommend another article: 101 tips for Google website optimizer. Google Insights for Search Google Insights for Search, a further development of Google Trends, charts how often a particular search term is entered, relative to the total search volume across various regions of the world, in various languages. This tool also enables its users to make a comparison between the volume of searches between several items or terms. Google Insights for Search can be used as a crystal ball, a tool to predict the evolution of search volumes for some terms. A very cool feature is that it also shows related keywords that have large increases of searches. One of the assets that we consider of vital importance is the graphs, conducting comparative analyses for different terms. You just have to insert some keywords, select the 38

39 region and the time you are interested in and voilà: you get a comprehensive graphic with the search volume evolution. Ad Preview Tool Judging by its name, this is a tool by Google AdWords that just previews the way your site will look in the Search Engine Result Page (SERP). What are the benefits of using this tool? First of all, you ll get a hint of how your ad will look like, and secondly, you will see the contextual placement of your ad, i.e. whether your ad has well defined keywords. Thirdly, you get improved location targeting for your ads. You can also refine the results page by adding location attributes and values manually to the URL of the ad preview page. Optional attributes include a target country, longitude/latitude coordinates, regions, and cities. In the U.S., you can also set a target ZIP code or designated market area (DMA). Generally speaking, the Ad Preview Tool provides "clean" search results page for a given keyword, domain, language and geography. This way, you can monitor your local campaigns in different areas (you shouldn't employ it for national campaigns). Nevertheless, you should take into account the "relativity" of this tool - the SERP won t look the same at all times. For more details about this tool, check out Google's Ad Preview Tool Gotchas You Should Know 39

40 Compete and Alexa Compete and Alexa can provide good insights on how your competition is standing. Follow them, learn from their mistakes and improvements and make sure you are on top of things. For any of the tools provided, context is very important. For example, learning the approximate traffic of your competitors can be easily linked to their back links. Use Yahoo Site Explorer to get access to this data. Search Engines Webmasters Tools These tools provided by search engines will give you a very good hint on how well your website is indexed, the main issues the crawlers discover and so on. You can also submit your sitemap to them and you will always know the status of your indexed pages. Try: Google Webmasters Tools Yahoo Site Explorer Center Crazy Egg While Google Analytics has a feature of showing the Website Overlay with the links clicking situation, unless some specific implementations are done, it s 40

41 pretty much off target when it comes to provide actionable data. Crazy Egg is a specialized tool that can provide a picture of where people clicked on your site. This tells you what s hot and what s not, so you can make changes that matter. It has a free service plan, as well as paid ones. iperceptions 4Q Avinash Kaushik introduced this permission based on-exit survey that provides an easy to deploy, use and analyze the framework, in order to get 4 answers that no website owner can live without. Surveys are powerful and can yield much deeper insights about the customer experiences on your website, helping you get a broader image about your visitors behavior. 41

42 11. Great Blogs to Follow Most of the information we put in this ebook comes from what we ve learned from great bloggers out there and experimented on our own. We d like to thank them for the great job they are doing - here is who we recommend: Occam s Razor by Avinash Kaushik Avinash s blog is a must for anyone interested in web analytics. With non technical approaches, he can make anyone understand what web analytics is all about. He is also the author of the much acclaimed book Web Analytics One hour a day. Check out the interview Avinash Kaushik gave for Avangate. Luna Metrics Blog On the other side, this is a very technical blog. The folks at Luna Metrics are Google Analytics authorized consultants and get very deep into technical implementations on analytics tracking codes. They also spend a lot of time helping others on the Google group especially created for Google Analytics support. 42

43 The Official Google Analytics Blog It's all about the latest news, tips, and resources straight from the Google Analytics team. Other blogs that are worth following: Juice Analytics Rich Page Ramblings - Web analytics insight, website optimization and reviews Immeria an immersion in web analytics Web Analytics Demystified Web Analytics World Other great places with resources for the Analytics Industry: Web Analytics Association Yahoo Group Web Analytics Association Website (WAA). We encourage you to become a member of WAA, as they provide great webinars and other resources for all its members. While all of the above resources are focused on general web analytics we also invite you to follow the Avangate Software Business Blog, where we will do our best to offer you specialized resources for software vendors. 43

44 12. Great Books to Read There are 3 books we highly recommend: The first one is Web Analytics One hour a day and Web Analytics 2.0 by Avinash Kaushik, which are a great intro in the Web Analytics World. After reading his books, you will be half way there when talking about mastering web analytics. The other half will come from the experience you will gain while testing and acting on the data you get. While these 2 books will help you really understand what s with all that data you get from your analytics tool, Bryan Eisenberg from Grokdotcom will help you take some actions and make those sales hit the roof. And as one can never be 100% sure of the action he takes, he recommends to Always Be Testing. 44

45 Did you find this ebook useful? If you enjoyed reading this ebook, please take a few moments to give us feedback. We respect and value your opinion. Can you think of any ways to improve it? Are there any other subjects you would like us to approach? Please send us feedback! 45

46 About Avangate Avangate provides solutions for electronic software distribution and reseller management, assisting software companies worldwide in successfully selling their products online and managing a distribution network. The company s offer includes an ecommerce platform incorporating an easy to use and secure online payment system, plus software marketing services and additional marketing and sales tools such as an affiliate network, automated cross selling options, software promotion management, real time reporting, 24/7 shopper support, and the ARMS reseller management program specifically designed for software sales. More information can be found on the corporate website, at Avangate Van Heuven Goedhartlaan 937, 1181 LD Amstelveen, The Netherlands Tel: Fax: info@avangate.com Web: of GECAD Group, delivering innovative IT solutions Worldwide since

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: May 2012 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of the latest

More information

Analytics minibible. for Software Vendors

Analytics minibible. for Software Vendors Analytics minibible for Software Vendors Version 3.0 - last updated: November 2014 The last 12 months have been among the busiest for Google Analytics and other analytics tools. Here are just a few of

More information

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS

MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS MONITORING YOUR WEBSITE WITH GOOGLE ANALYTICS How to use Google Analytics to track activity on your website and help get the most out of your website 2 April 2012 Version 1.0 Contents Contents 2 Introduction

More information

Is Your Google Analytics Data Accurate?

Is Your Google Analytics Data Accurate? Is Your Google Analytics Data Accurate? September 18, 2013 Presented By Amin Shawki Analytics Manager Andy Gibson Digital Marketing Analyst 1. 1 Billion+ pageviews/year in sites analyzed and supported

More information

ANALYTICS. Geek Speak for the Technically Meek

ANALYTICS. Geek Speak for the Technically Meek ANALYTICS Geek Speak for the Technically Meek ABOUT ME Ben Pritchard Interactive Technology Director at bpritchard@garrisonhughes.com @pixelfumes www.garrisonhughes.com ABOUT Responsive Website Design

More information

Google Analytics Audit. Prepared For: Xxxxx

Google Analytics Audit. Prepared For: Xxxxx Google Analytics Audit Prepared For: Xxxxx Please Note: We have edited all images and some text to protect the privacy of our client. 1. General Setup 3 1.1 current analytics tracking code 3 1.2 test purchase

More information

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement.

All SABMiller websites, as defined in this document should have Google Analyitcs implemented as a mandatory requirement. Analytics version 1 Introduction Web analytics is used to track, measure, collect, report and analyse web data in order to understand and optimise usage of web properties. These properties could include

More information

web analytics ...and beyond Not just for beginners, We are interested in your thoughts:

web analytics ...and beyond Not just for beginners, We are interested in your thoughts: web analytics 201 Not just for beginners, This primer is designed to help clarify some of the major challenges faced by marketers today, such as:...and beyond -defining KPIs in a complex environment -organizing

More information

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673

WEB ANALYTICS. Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS Presented by Massimo Paolini MPThree Consulting Inc. www.mpaolini.com 408-256-0673 WEB ANALYTICS IS ABOUT INCREASING REVENUE WHAT WE LL COVER Why should you use Asynchronous code What are

More information

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo

Presented By: Web Analytics 101. Avoid Common Mistakes and Learn Best Practices. June 2012. Lubabah Bakht, CEO, Vitizo Presented By: Web Analytics 101 Avoid Common Mistakes and Learn Best Practices June 2012 Lubabah Bakht, CEO, Vitizo Web Analytics 101, Lubabah Bakht, June 2012 This 12-page whitepaper provides a deep understanding

More information

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS

DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS DISCOVERING OUR PATRONS USING GOOGLE ANALYTICS Michael Sheehan Lake Superior Libraries Symposium, WITC Superior June 1, 2012 A LITTLE ABOUT ME AND MY EMPLOYER Mike Sheehan is the Assistant Director at

More information

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591

Google Analytics. Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Google Analytics Jay Murphy Trionia Incorporated The Science of Marketing jmurphy@trionia.com 877 234 0591 Agenda Google Analytics A Whirl Wind Tour of Onsite SEO Google Analytics and SEO Google Analytics

More information

10 Tips on How to Plan a Successful Internet Business. Robert Rustici

10 Tips on How to Plan a Successful Internet Business. Robert Rustici 10 Tips on How to Plan a Successful Internet Business Robert Rustici 1. Define Your Business Type - Going Outside of the Box Will Cost You When planning to create an Internet Business there are three common

More information

Email Marketing Now let s get started on probably the most important part probably it is the most important part of this system and that s building your e-mail list. The money is in the list, the money

More information

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina What you re about to sit through GA reports are ready to be customized! What are Custom Variables?

More information

White paper: Google Analytics 12 steps to advanced setup for developers

White paper: Google Analytics 12 steps to advanced setup for developers White paper: Google Analytics 12 steps to advanced setup for developers We at Core work with a range of companies who come to us to advises them and manage their search and social requirements. Dr Jess

More information

SmallBiz Dynamic Theme User Guide

SmallBiz Dynamic Theme User Guide SmallBiz Dynamic Theme User Guide Table of Contents Introduction... 3 Create Your Website in Just 5 Minutes... 3 Before Your Installation Begins... 4 Installing the Small Biz Theme... 4 Customizing the

More information

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com

TOP 10 things. In Google Analytics. Your Association Should Measure. weblinkinternational.com TOP 10 things Your Association Should Measure In Google Analytics 1 weblinkinternational.com TABLE OF CONTENTS Welcome.... 3 Metric 1 «Audience Location.... 4 Metric 2 «Audience Engagement....... 6 Metric

More information

Google Analytics Basics

Google Analytics Basics Google Analytics Basics Contents Google Analytics: An Introduction...3 Google Analytics Features... 3 Google Analytics Interface... Changing the Date Range... 8 Graphs... 9 Put Stats into Context... 10

More information

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By

Google Analytics Guide. for BUSINESS OWNERS. By David Weichel & Chris Pezzoli. Presented By Google Analytics Guide for BUSINESS OWNERS By David Weichel & Chris Pezzoli Presented By Google Analytics Guide for Ecommerce Business Owners Contents Introduction... 3 Overview of Google Analytics...

More information

Pay per Click Success 5 Easy Ways to Grow Sales and Lower Costs

Pay per Click Success 5 Easy Ways to Grow Sales and Lower Costs Pay per Click Success 5 Easy Ways to Grow Sales and Lower Costs Go Long! The Benefits of Using Long Tail Keywords clogged sewage line, I ll see a higher conversion How many keywords are in your pay-per-click

More information

Google Analytics for Government Second Edition

Google Analytics for Government Second Edition Google Analytics for Government Second Edition By Sarah Kaczmarek, May 2014 GOOGLE ANALYTICS FOR GOVERNMENT Second Edition Table of Contents PART 1: INTRODUCTION... 2 WELCOME TO THE SECOND EDITION OF GOOGLE

More information

62 Ecommerce Search Engine Optimization Tips & Ideas

62 Ecommerce Search Engine Optimization Tips & Ideas 62 Ecommerce Search Engine Optimization Tips & Ideas One of the reasons I like ecommerce SEO is there are a tremendous amount of opportunities to increase the optimization quality of an online store. Unlike

More information

Nonprofit Technology Collaboration. Web Analytics

Nonprofit Technology Collaboration. Web Analytics Web Analytics Contents What is Web Analytics?... 2 Why is Web Analytics Important?... 2 Google Analytics... 3 Using Major Metrics in Google Analytics... 6 Traffic Sources... 6 Visitor Loyalty... 9 Top

More information

7 Tips to Boost Buyers Using Google Adwords & Analytics. Andrew R Edwards info@andrewredwards.com

7 Tips to Boost Buyers Using Google Adwords & Analytics. Andrew R Edwards info@andrewredwards.com 7 Tips to Boost Buyers Using Google Adwords & Analytics Andrew R Edwards info@andrewredwards.com About Me 9 Years Full Time Internet Marketing Google's advertising system in which advertisers bid on certain

More information

Top 3 Marketing Metrics You Should Measure in Google Analytics

Top 3 Marketing Metrics You Should Measure in Google Analytics Top 3 Marketing Metrics You Should Measure in Google Analytics Presented By Table of Contents Overview 3 How to Use This Knowledge Brief 3 Metric to Measure: Traffic 4 Direct (Acquisition > All Traffic

More information

Implementing Sub-domain & Cross-domain Tracking A Complete Guide

Implementing Sub-domain & Cross-domain Tracking A Complete Guide Implementing Sub-domain & Cross-domain Tracking A Complete Guide Prepared By techbythebay.com 1 Contents 1. Sub Domain & Cross Domain Tracking for GA (asynchronous) I. Standard HTML/JavaScript Implementation

More information

10 Analytics & Optimization. From Code to Product gidgreen.com/course

10 Analytics & Optimization. From Code to Product gidgreen.com/course 10 Analytics & Optimization From Code to Product gidgreen.com/course Lecture 10 Introduction Data collection Website metrics Optimization Competitive intelligence Surveys Tools and books From Code to Product

More information

Getting Started with Google Analytics 7 Easy but comprehensive steps

Getting Started with Google Analytics 7 Easy but comprehensive steps Getting Started with Google Analytics Right, so you have a shiny new website or you have a site that has been up and running for a while now that s great. The hard work is done and the leads and sales

More information

The Practical Guide To Google Analytics For Businesses

The Practical Guide To Google Analytics For Businesses The Practical Guide To Google Analytics For Businesses Why Analytics?... 6 1. Where to find the best data:... 7 Google Analytics Reports Standard Reports... 7 Traffic Sources... 7 The All Traffic Report...

More information

Google Analytics workbook

Google Analytics workbook Google Analytics workbook Sub-title here Google Analytics workbook Overview Google Analytics is just one of many tools available for tracking activity on a website or mobile application. It provides users

More information

1 Which of the following questions can be answered using the goal flow report?

1 Which of the following questions can be answered using the goal flow report? 1 Which of the following questions can be answered using the goal flow report? [A] Are there a lot of unexpected exits from a step in the middle of my conversion funnel? [B] Do visitors usually start my

More information

Insights and ROI from your paid ads by using UTM tags to AdWords campaigns in WOW Analytics.

Insights and ROI from your paid ads by using UTM tags to AdWords campaigns in WOW Analytics. Insights and ROI from your paid ads by using UTM tags to AdWords campaigns in WOW Analytics. Insights and ROI from your paid ads You could spend thousands of pounds on you paid ads in Google AdWords, Bing

More information

Best SEO Practices for Online Gambling Sites

Best SEO Practices for Online Gambling Sites Best SEO Practices for Online Gambling Sites Table of Contents Introduction... 3 Stages of an SEO campaign: Keyword research... 4 On-site SEO. Technical issues... 6 Link building... 11 Analytics and tracking...

More information

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey

Google Analytics for Robust Website Analytics. Deepika Verma, Depanwita Seal, Atul Pandey 1 Google Analytics for Robust Website Analytics Deepika Verma, Depanwita Seal, Atul Pandey 2 Table of Contents I. INTRODUCTION...3 II. Method for obtaining data for web analysis...3 III. Types of metrics

More information

Marketing Online SEO Facebook Google Twitter YouTube

Marketing Online SEO Facebook Google Twitter YouTube Marketing Online SEO Facebook Google Twitter YouTube What is Internet Marketing? Internet marketing is considered to be broad in scope[1] because it not only refers to marketing on the Internet, but also

More information

THE ECOMMERCE MARKETING GUIDE TO FACEBOOK

THE ECOMMERCE MARKETING GUIDE TO FACEBOOK ADVANCED THE ECOMMERCE MARKETING GUIDE TO FACEBOOK A publication of 2 IS THIS BOOK RIGHT FOR ME? Not quite sure if this ebook is right for you? See the below description to determine if your level matches

More information

TRACKING CHAT DRIVEN CONVERSIONS

TRACKING CHAT DRIVEN CONVERSIONS Integrating Google Analytics with BoldChat. Highlights Thousands of customers, worldwide Reliable 99.99% uptime The industry s best value Fully deploys in days 24/7 support Proven installs across vertical

More information

How To Understand Your Online Marketing Program

How To Understand Your Online Marketing Program Online Analytics Best Practices Nick Guebhard and Chris Adams RTONZ Online Marketing Program Facilitated by: Miles Media Program Facilitated by: Session Summary RTONZ Online Marketing Program 1. Results

More information

Using Google Analytics

Using Google Analytics Using Google Analytics Overview Google Analytics is a free tracking application used to monitor visitors to your website in order to provide site designers with a fuller knowledge of their audience. At

More information

A Beginner s Guide To. google analytics

A Beginner s Guide To. google analytics A Beginner s Guide To google analytics executive summary Expectations have risen for marketing departments abilities to track, measure and optimize different marketing operations. In today s world of

More information

Inbound Marketing The ultimate guide

Inbound Marketing The ultimate guide Inbound Marketing The ultimate guide La Casita Del Cuco.EBOOK Inbound Marketing - The ultimate guide Version _ 02 Date _ September 2015 Introduction Inbound Marketing is a marketing philosophy which has

More information

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina

Personalizing Google Analytics Using Events and Custom Variables. Josh Wilson State Library of North Carolina Personalizing Google Analytics Using Events and Custom Variables Josh Wilson State Library of North Carolina Five Minute Version What are Events? What are Custom Variables? Definitions & Differences Understanding

More information

5 STEP WEB-TO-LEAD CONVERSION

5 STEP WEB-TO-LEAD CONVERSION Marketing Expertise - Topic Two: What Contractors Need to Know About Online Lead Conversion 5 STEP WEB-TO-LEAD CONVERSION Learn what every home remodeling contractor should know about online lead generation.

More information

Impressive Analytics

Impressive Analytics Impressive Analytics and Insight on a Shoestring Lisa Ikariyama & Tracy Anderson Cabbage Tree Creative www.cabbagetree.co.nz Getting Started Before you design a page on your website or get started with

More information

GOOGLE ANALYTICS 101

GOOGLE ANALYTICS 101 GOOGLE ANALYTICS 101 Presented By Adrienne C. Dupree Please feel free to share this report with anyone who is interested in the topic of building a profitable online business. Simply forward it to them

More information

presented by Maxmail

presented by Maxmail presented by Maxmail What s Inside Hello. It doesn t matter if you re a brick-and-mortar store, an online retailer, small or not so small. We will show you how you can build your email list and use this

More information

Google Analytics Health Check Laying the foundations for successful analytics and optimisation

Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Health Check Laying the foundations for successful analytics and optimisation Google Analytics Property [UA-1234567-1] Domain [Client URL] Date of Review MMM YYYY Consultant [Consultant

More information

How to Use Google AdWords

How to Use Google AdWords Web News Apps Videos Images More Search Tools How to Use Google AdWords A Beginner s Guide to PPC Advertising How to Use Google AdWords offers.hubspot.com/google-adwords-ppc Learn how to use Google AdWords

More information

INTERNET MARKETING. SEO Course Syllabus Modules includes: COURSE BROCHURE

INTERNET MARKETING. SEO Course Syllabus Modules includes: COURSE BROCHURE AWA offers a wide-ranging yet comprehensive overview into the world of Internet Marketing and Social Networking, examining the most effective methods for utilizing the power of the internet to conduct

More information

Small Business. Online Success. Google offers insights and tools to help your business grow.

Small Business. Online Success. Google offers insights and tools to help your business grow. Small Business. Online Success. Google offers insights and tools to help your business grow. Contents Introduction 5 The basics: Get online 6 Ready-made sites 6 Google Sites 7 The next step: Attract and

More information

DIGITAL MARKETING TRAINING

DIGITAL MARKETING TRAINING DIGITAL MARKETING TRAINING Digital Marketing Basics Keywords Research and Analysis Basics of advertising What is Digital Media? Digital Media Vs. Traditional Media Benefits of Digital marketing Latest

More information

11/23/2011. PPC Search Advertising. There are Two Key Parts to any Search Engine Marketing Strategy. 1. Search Engine Optimisation (SEO)

11/23/2011. PPC Search Advertising. There are Two Key Parts to any Search Engine Marketing Strategy. 1. Search Engine Optimisation (SEO) PPC Search Advertising Adrian Feane Effective PPC Campaigns and 5 Case Study & Summary Slide There are Two Key Parts to any Search Engine Marketing Strategy. Search Engine Optimisation (SEO). Pay Per Click

More information

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago

Boosting Campaign Performance Through Web Analytics. David Kamerer, PhD, APR Loyola University Chicago Boosting Campaign Performance Through Web Analytics David Kamerer, PhD, APR Loyola University Chicago Whose web is it? Phase 1: IT Phase 2: designers Phase 3: content creators An embarrassing question:

More information

Analytics over the last few years has changed a good bit. There are a good many free tools that are available, pretty painless to implement.

Analytics over the last few years has changed a good bit. There are a good many free tools that are available, pretty painless to implement. Introduction Analytics over the last few years has changed a good bit. There are a good many free tools that are available, pretty painless to implement. What we end up is lots, and lots of data and a

More information

UNTOLD MAP SECRETS. Are you a MyAdvertisingPays member? Great!

UNTOLD MAP SECRETS. Are you a MyAdvertisingPays member? Great! UNTOLD MAP SECRETS The Guide for online marketing newbies Are you a MyAdvertisingPays member? Great! Do you know that you can earn money by using the advertising system of MyAdvertisingPays but you have

More information

Tracking Campaigns for Local Authorities. Lucian Glenny Web Analyst

Tracking Campaigns for Local Authorities. Lucian Glenny Web Analyst Tracking Campaigns for Local Authorities Lucian Glenny Web Analyst Overview 1. Creating a measurement plan 2. Identifying users from your campaign in Google Analytics 3. Analysing the pages viewed by campaign

More information

Online Marketing Module COMP. Certified Online Marketing Professional. v2.0

Online Marketing Module COMP. Certified Online Marketing Professional. v2.0 = Online Marketing Module COMP Certified Online Marketing Professional v2.0 Part 1 - Introduction to Online Marketing - Basic Description of SEO, SMM, PPC & Email Marketing - Search Engine Basics o Major

More information

Owning the Google Results Page...

Owning the Google Results Page... Owning the Google Results Page............................................................................................. 1 Owning the Google Results Page.............................................................................................

More information

A 7-Step Analytics Reporting Framework

A 7-Step Analytics Reporting Framework A 7-Step Analytics Reporting Framework By Feras Alhlou, Principal Marketing Consultant 2 Marketing Optimization Imagine that you just attended a conference on digital marketing and analytics. You re pumped

More information

Colleen s Interview With Ivan Kolev

Colleen s Interview With Ivan Kolev Colleen s Interview With Ivan Kolev COLLEEN: [TO MY READERS] Hello, everyone, today I d like to welcome you to my interview with Ivan Kolev (affectionately known as Coolice). Hi there, Ivan, and thank

More information

Google AdWords customers can see their Analytics data from inside their AdWords account

Google AdWords customers can see their Analytics data from inside their AdWords account Johannes Spruijt Free service offered by Google that generates detailed statistics about the visitors to a website. A premium version is also available for a fee. The product is aimed at marketers as opposed

More information

GUIDE TO POSITIONLY. Everything you need to know to start your first SEO campaign with Positionly!

GUIDE TO POSITIONLY. Everything you need to know to start your first SEO campaign with Positionly! GUIDE TO POSITIONLY Everything you need to know to start your first SEO campaign with Positionly! 1 Introduction In this guide, you'll learn everything you need to get started with Positionly. We'll walk

More information

How to Use YouTube Ads to Grow Your Business

How to Use YouTube Ads to Grow Your Business How to Use YouTube Ads to Grow Your Business The different kinds of YouTube ads In broad terms there are two kinds of YouTube Ads: skippable ads and non-skippable ads. Non-skippable ads are ads that force

More information

Everything You Need to Know About Digital Marketing

Everything You Need to Know About Digital Marketing White Paper Everything You Need to Know About Digital Marketing A website must be supported with marketing and advertising if it is to become a true business channel Sam Saltis Copyright bwired 2009 Copyright

More information

Title/Description/Keywords & Various Other Meta Tags Development

Title/Description/Keywords & Various Other Meta Tags Development Module 1 - Introduction Introduction to Internet Brief about World Wide Web and Digital Marketing Basic Description SEM, SEO, SEA, SMM, SMO, SMA, PPC, Affiliate Marketing, Email Marketing, referral marketing,

More information

GETTING STARTED WITH GOOGLE SHOPPING. Chapter 2. LOGAN DURANT GOOGLE SHOPPING Manager

GETTING STARTED WITH GOOGLE SHOPPING. Chapter 2. LOGAN DURANT GOOGLE SHOPPING Manager GETTING STARTED WITH GOOGLE SHOPPING The Complete Guide Chapter 2 LOGAN DURANT GOOGLE SHOPPING Manager Google Shopping Introduction Ever since Google announced that its Shopping service was switching from

More information

TTI Summer Forum London, 2012. Barbara Pezzi, Director Web Analytics & Search Optimization

TTI Summer Forum London, 2012. Barbara Pezzi, Director Web Analytics & Search Optimization TTI Summer Forum London, 2012 Barbara Pezzi, Director Web Analytics & Search Optimization This Session: Marketing Tracking & Web Analytics Web Analytics Any successful online marketing initiative requires

More information

Setup Guide. 1.877.273.9921 www.epikone.com

Setup Guide. 1.877.273.9921 www.epikone.com Setup Guide by Step 1: Create A Google Analytics Account Step 2: Analyze Your Website Step 3: Create A Profile Step 4: Link Google Analytics Account To Your Google AdWords Account Step 5: Add Tracking

More information

DIGITAL MARKETING. The Page Title Meta Descriptions & Meta Keywords

DIGITAL MARKETING. The Page Title Meta Descriptions & Meta Keywords DIGITAL MARKETING Digital Marketing Basics Basics of advertising What is Digital Media? Digital Media Vs. Traditional Media Benefits of Digital marketing Latest Digital marketing trends Digital media marketing

More information

Optimizing Landing Pages

Optimizing Landing Pages 1 Optimizing Landing Pages for Lead Generation and Conversion How to Drive More Leads with Better Landing Pages A publication of 2 IS THIS BOOK RIGHT FOR ME? Not quite sure if this ebook is right for you?

More information

Web Hosting Tips & Tricks For Affiliates

Web Hosting Tips & Tricks For Affiliates Web Hosting Tips & Tricks For Affiliates References http://hagency.com/top-web-hosts.php http://minisitemanager.com http://hagency.com/enom Introduction Hosting a website can be a very confusing experience

More information

The Google Guide to Search Advertising. How to make search advertising work for your business

The Google Guide to Search Advertising. How to make search advertising work for your business The Google Guide to Search Advertising How to make search advertising work for your business Contents Introduction... 2 Google AdWords: What s In It For You?... 2 5 Steps to Success: Setting Up & Maintaining

More information

ADVANCE DIGITAL MARKETING VIDEO TRAINING COURSE. Page 1 of 34 www.experttraining.in Youtube.com/ViralJadhav viral@experttraining.

ADVANCE DIGITAL MARKETING VIDEO TRAINING COURSE. Page 1 of 34 www.experttraining.in Youtube.com/ViralJadhav viral@experttraining. ADVANCE DIGITAL MARKETING VIDEO TRAINING COURSE Page 1 of 34 www.experttraining.in Youtube.com/ViralJadhav viral@experttraining.in +91 9558821174 Who Can Join? Business Owners who want to attract more

More information

LiveEngage Setup Guide

LiveEngage Setup Guide LiveEngage Setup Guide Welcome to the LivePerson community! Congratulations on joining the worldwide movement toward digital engagement to satisfy customers and increase sales. This guide is just one of

More information

HOW TO IMPROVE YOUR WEBSITE FOR BETTER LEAD GENERATION Four steps to auditing your site & planning improvements

HOW TO IMPROVE YOUR WEBSITE FOR BETTER LEAD GENERATION Four steps to auditing your site & planning improvements HOW TO IMPROVE YOUR WEBSITE FOR BETTER LEAD GENERATION Four steps to auditing your site & planning improvements A good website will do incredible things for business to business (B2B) companies. Over the

More information

Successful Internet Marketing & Social Media Marketing An Introduction

Successful Internet Marketing & Social Media Marketing An Introduction Successful Internet Marketing & Social Media Marketing An Introduction 4 Web Marketing Perspectives Google & The Dicing of Everything Get Google s Perspective Markets are Conversations Get Outside Perspective

More information

A Best Practices Guide to Successful Landing Pages

A Best Practices Guide to Successful Landing Pages A Best Practices Guide to Successful Landing Pages www.pardot.com 2008 Pardot, LLC. All rights reserved worldwide Executive Summary For B2B marketers with long, complex sales cycles, conversion typically

More information

2015 SEO AND Beyond. Enter the Search Engines for Business. www.thinkbigengine.com

2015 SEO AND Beyond. Enter the Search Engines for Business. www.thinkbigengine.com 2015 SEO AND Beyond Enter the Search Engines for Business www.thinkbigengine.com Including SEO Into Your 2015 Marketing Campaign SEO in 2015 is tremendously different than it was just a few years ago.

More information

A Beginner s Guide to the Google Display Network

A Beginner s Guide to the Google Display Network A Beginner s Guide to the Google Display Network Read this guide and learn how to advertise on Google s Display Network, so you open up a whole new channel of traffic, leads and customers. Brought to you

More information

Web Analytics 2.0: Empowering Customer Centricity Part II Daniel Waisberg and Avinash Kaushik

Web Analytics 2.0: Empowering Customer Centricity Part II Daniel Waisberg and Avinash Kaushik Web Analytics 2.0: Empowering Customer Centricity Part II Daniel Waisberg and Avinash Kaushik ABSTRACT In this two-part article, we started by describing the best practices of Web Analytics, the steps

More information

Optimizing Your Web site 101.2: Motivating your supporters to take initial actions

Optimizing Your Web site 101.2: Motivating your supporters to take initial actions Optimizing Your Web site 101.2: Motivating your supporters to take initial actions Dimitri Lundquist and Misty McLaughlin About the presenters Dimitri Lundquist Interactive Specialist 4 years experience

More information

Creating a High Performance Website

Creating a High Performance Website Creating a High Performance Website Your website will be the core of your digital marketing program, so it s critical to take the time to do it right. By starting with your brand, designing strong information

More information

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director

Demystifying Digital Introduction to Google Analytics. Mal Chia Digital Account Director Demystifying Digital Introduction to Google Analytics Mal Chia Digital Account Director @malchia @communikateetal Slides will be emailed after the session 2 Workshop Overview 1. Introduction 2. Getting

More information

Conversion Optimization Tools

Conversion Optimization Tools Conversion Optimization Tools Choosing the right optimization tools can make a significant difference to your bottom line. Learn all about the latest tools and how they can improve the volume of visitors

More information

About 0 to 60 Marketing

About 0 to 60 Marketing About 0 to 60 Marketing Let the experts take your business from 0 to 60 in less than 90 days! Approach. Technology. Support. All Inclusive Founded in 2010 0 to 60 Marketing has helped numerous businesses

More information

How To Market Your Website Online

How To Market Your Website Online Internet marketing Corporate Training Program- Delhi School of Internet Marketing Under the training program all the trainees will not only be trained in internet marketing but they will be working on

More information

Zeeblio Reviewer's Guide

Zeeblio Reviewer's Guide Zeeblio Reviewer's Guide Table of Contents Overview... 1 ABOUT THIS GUIDE... 1 HOW TO USE THIS GUIDE... 1 ABOUT LYCOS, INC.... 1 Introducing Zeeblio... 2 ZEEBLIO OVERVIEW... 2 ZEEBLIO MEDIA MANAGER...

More information

WEB ANALYTICS Where to Begin

WEB ANALYTICS Where to Begin WEB ANALYTICS Where to Begin e-book SPOILER ALERT! People love the Internet. A lot. In fact, 92% of online adults rely on search engines when looking for information 1. That means your audience s first

More information

APP ANALYTICS PLUGIN

APP ANALYTICS PLUGIN support@magestore.com Phone: 084.4.8585.4587 APP ANALYTICS PLUGIN USER GUIDE Table of Contents 1. INTRODUCTION 2. HOW TO INSTALL 3. HOW TO SET UP YOUR GOOGLE ANALYTICS ACCOUNT 4. HOW TO CONFIGURE IN MAGENTO

More information

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3

Introduction. Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Contents Foreword Introduction xix xxi Part I Measuring Success 1 Chapter 1 Why Understanding Your Web Traffic Is Important to Your Business 3 Website Measurement Why Do This?... 4 Information Web Analytics

More information

Findability Consulting Services

Findability Consulting Services Findability Consulting Services In 2012, after twelve years of running the Findability Group, I was delighted to merge my firm with industry innovators Volume 9 Inc., who are now my exclusive referral

More information

Tracking True & False Demystifying Recruitment Marketing Analytics

Tracking True & False Demystifying Recruitment Marketing Analytics Tracking True & False Demystifying Recruitment Marketing Analytics THE CANDIDATE JOURNEY SIMPLIFIED THE DECISION CYCLE SIMPLIFIED Awareness & Attraction Research & Decision Conversion Action THE CANDIDATE

More information

Inbound Marketing: Best Practices

Inbound Marketing: Best Practices 423-797-6388 www.nektur.com mgmt@nektur.com Inbound Marketing: Best Practices We believe in empowering brands with the tools to achieve sustainable growth. Outline 1. 10 Suprising Facts 2. Email Marketing

More information

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform

Get Started with LeadSquared Guide for Marketing Users. Complete lead to revenue platform Get Started with LeadSquared Guide for Marketing Users Complete lead to revenue platform Bookmark LeadSquared Login Page Login to LeadSquared at https://run.leadsquared.com (Bookmark the URL) LeadSquared

More information

Online Marketing Services at Surgeworks

Online Marketing Services at Surgeworks Online Marketing Services at Surgeworks Surgeworks 2040 E Murray-Holladay Rd, Ste 115, Salt Lake City, UT 84117 T 801-272-9800 F 801-272-9810 www.surgeworks.com Table of Contents Why do you need us? 1

More information

Hybrid Approach to Search Engine Optimization (SEO) Techniques

Hybrid Approach to Search Engine Optimization (SEO) Techniques Suresh Gyan Vihar University Journal of Engineering & Technology (An International Bi Annual Journal) Vol. 1, Issue 2, 2015, pp.1-5 ISSN: 2395 0196 Hybrid Approach to Search Engine Optimization (SEO) Techniques

More information

Google Analytics Guide

Google Analytics Guide Google Analytics Guide 1 We re excited that you re implementing Google Analytics to help you make the most of your website and convert more visitors. This deck will go through how to create and configure

More information

TheComplete GoogleAnalytics PowerUserGuide

TheComplete GoogleAnalytics PowerUserGuide TheComplete GoogleAnalytics PowerUserGuide 1 Introduction: Google Analytics (GA) can be a powerful tool. It can also be incredibly intimidating for new users. This guide is a compilation of VKI's Google

More information