An Introduction to Google Tag Manager

Posted by Angela_Petteys

Digital marketing thrives on data. No matter what type of site you have, whether it’s a large e-commerce site, a personal website, or a site for a small business, it’s essential to understand how people interact with your site. Google Analytics can provide a lot of the important insights you’re looking for, but when used alone, it does have its limitations. But by tagging your site and using Google Tag Manager in conjunction with Google Analytics, you’re able to collect much more data than you can otherwise.

Tags are snippets of code which are added to a site to collect information and send it to third parties. You can use tags for all sorts of purposes, including scroll tracking, monitoring form submissions, conducting surveys, generating heat maps, remarketing, or tracking how people arrive at your site. They’re also used to monitor specific events like file downloads, clicks on certain links, or items being removed from a shopping cart.

Sites commonly use several different tags and the amount of code needed to create them all can be pretty overwhelming, especially if you’re trying to add or edit tags by going directly into the site’s source code. Google Tag Manager is a tool with a user-friendly, web-based interface that simplifies the process of working with tags. With GTM, you’re able to add, edit, and disable tags without having to touch the source code.

While GTM is, obviously, a Google product, it’s hardly limited to just working with tags for other Google services like AdWords or Analytics. You can use it to manage many different third-party tags, including Twitter, Bing Ads, Crazy Egg, and Hotjar, just to name a few. If there’s another tag which doesn’t have a template in GTM, you can add your own custom code. There are only a few types of tags GTM doesn’t work well with.


The pros and cons of GTM

Lessens reliance on web devs

By far, the biggest benefit to Google Tag Manager is that it makes it easier for marketers to implement tags without having to rely on web developers to do it for them. Developers are usually busy with other high-priority projects, so tagging often ends up on the back burner. But since Google Tag Manager helps you avoid touching the source code, marketers can quickly add and make changes to tags on their own. This is a big advantage if, for example, you only need to use a tag to collect data for a very brief amount of time. Without GTM, there’s a good chance that it would take longer for the tag to be added than it would actually be live for.

Still requires some technical implementation

Although GTM helps reduce the reliance on developers, it doesn’t completely eliminate it. You’ll still need someone to add the container code to each page of your site. And while GTM has plenty of tag templates to choose from which are easy enough for a non-developer to work with, more complex customized tags will likely require the help of someone who really understands coding. If you have existing tags that were manually added to your site’s source code, those will need to be removed first so that you don’t end up with duplicate data.

Most businesses can benefit from using it

Businesses of any size can potentially benefit from GTM. Since GTM makes it so much easier to add and edit tags without a developer, it’s great for smaller businesses that might have limited access to technical support. And since sites for enterprise-level businesses can easily use dozens of tags, GTM makes it easier to manage them all and improves site speed by helping them load more efficiently.

Tags can slow down site speed if fired synchronously

One issue with traditional tracking tags is that if they fire synchronously, they can slow down site speeds. When tags fire synchronously, one tag being slow to load slows down all the other tags that are waiting on it. And the longer a site takes to load, the more likely it is that people will leave without converting. But tags created in GTM load asynchronously by default, meaning each tag can fire anytime it’s ready to. If you need to control the order in which your tags are fired, there is tag sequencing and firing priority functionality to let you do that.

Can be used for AMP sites and mobile apps, as well

You’re not even limited to just using GTM with standard websites. GTM can also be used to manage tags for AMP sites and mobile apps. In the case of mobile apps, GTM can be a huge help since it lets you add and edit your tags without having to issue an updated version of your app, which users might not be quick to actually download. In some respects, using GTM for AMP sites or mobile apps is pretty similar to using it for a regular website, but they do have their differences. In this guide, we’re going to focus on using GTM for web.


Components of tags & GTM

On the surface, tags and tag managers are pretty straightforward. But before you can start working with them, there are a few main concepts you’ll need to know about.

Containers

When you start working with GTM, the first thing you’ll need to do is create a container. A container essentially “holds” all the tags for your site.

After creating a new container, GTM gives you some code to add to your site. This is your container code and it will need to be added to the source code so it displays on each page of your site. Some CMSes, such as WordPress, have plugins to help add the container code for you, but you may need to contact your web developer to have it added. Once you’ve done that, you’ll be able to add, edit, disable, or remove your tags as needed through GTM.

Triggers

Each tag on a site needs to serve a specific purpose. Maybe you want to have a tag send information when someone downloads a file, when an outbound link is clicked, or when a form is submitted. These sorts of events are known as triggers and all tags need to have at least one trigger assigned to it; otherwise, it’s not going to do anything.

Triggers can be broken down into two main components: events and filters. When you go to configure a trigger in GTM, you’ll be given a long list of types of triggers to choose from. These are your events. Once you choose an event, you’ll be able to set up your filter.

Filters can be divided further down into three parts: variables, operators, and values. We’ll talk more about variables in just a minute, but in this case, it refers to the type of variable involved. The operator tells the tag whether an event needs to equal (or if it should be greater or less than a certain value, contain a certain value, etc.) And of course, the value is the condition which needs to be met. Even though the word “value” is typically used in reference to numbers and prices, remember that in this case, it doesn’t necessarily have to be a numerical value. In many cases, your value will be something like a URL or a keyword.

For example, let’s say I wanted to see how many people were reading the blog content on my site in depth. I could create a tag with a Scroll Depth event trigger that should fire when the vertical scroll depth reaches 75%. If I wanted this to fire on every page of my site, I could leave the “All Pages” option selected in the trigger configuration box and I wouldn’t have to create any further filters. But since I’m focusing on blog content, I’d choose “Some Pages” and create the filter “Page URL” “Contains” “fakewebsitename.com/blog.”

There might also be some circumstances when you don’t want a tag to fire. In this case, you can create a blocking trigger to prevent it from firing on those occasions. GTM prioritizes blocking triggers over other types of triggers, so if you have a blocking trigger that contradicts a condition set by another trigger, Google Tag Manager will follow what’s specified by the blocking trigger. For instance, if you have a tag that’s set to fire on all of your pages, but there are a few pages you’d like to have excluded from that, you can just use a blocking trigger to prevent it from firing on those few pages.

Variables & constants

While tags depend on triggers, triggers depend on variables. Variables contain the value a trigger needs to evaluate to know whether or not it should fire. The tag compares the value of the variable to the value defined in the trigger and if the variable meets the conditions of the trigger, the tag will fire.

Tags also use variables to collect information that can be passed onto the data layer as a user interacts with the site. A common example of this would be if a tag was set to fire when a person adds a certain amount of products to their shopping cart.

Variables can often be reused between tags. One of the most popular tips for using GTM is to create constant variables with the ID numbers or tracking codes you’ll need to use more than once. For example, if you’ll need to use your Google Analytics property ID number in multiple tags, you could just create a constant string variable with the value being your ID number. That way, instead of repeatedly having to look up and enter your ID number, you could just select the variable name.

When using GTM, you’ll be working with two different types of variables: built-in variables and user-defined variables. Built-in variables are some of the most commonly used types of variables, so Google went ahead and made them easy to access in GTM.

Google Tag Manager Built In Variables.png

Once you select a built-in variable, you’ll be able to configure its settings however you’d like. Note that these are just a few of the built-in variables for regular web containers. You can find more built-in variables by clicking the “Configure” button. If you’re using GTM for AMP sites or mobile apps, you may see different options to choose from.

If you need another type of variable that’s not included as a built-in variable, you can create a user-defined variable. When you go to add a user-defined variable, you’ll be given a list of types of variables to choose from. For more information on each type of variables, Simo Ahava has a very helpful guide to different variable types.

Variables can be created from the GTM dashboard by clicking on the “Variable” option on the left side menu. You can also create them while you’re creating a tag by clicking on the button next to the field that looks like a Lego block with a plus sign on it.

Data layers

Tags need information to know whether or not they should fire, but how (or where) do they get that information? One way they could find it is by checking the page’s HTML structure, but that’s really not an ideal solution. When tags need to search through HTML to find what they’re looking for, it can take longer for them to fire. And if the site’s HTML structure changes over time, tags can break. Besides, there are certain types of information a tag might need which won’t be found in a page’s HTML, like a transaction total.

A data layer is a JavaScript object which keeps the information tags need separate from the rest of your site’s code. Since tags don’t have to spend time searching through the HTML to find the information they need, this is another way GTM can help improve site speed. Instead, everything they’re looking for can be found in one place and it’s readily available when the page loads.

Technically, data layers are optional. You don’t have to specifically define one yourself; GTM can initiate one for you. But if you want to use GTM to track specific events, you’ll need to have a data layer.

To start off with, a new data layer object will look like this:

Empty Data Layer Code.png

When adding a data layer, the object needs to be placed before the GTM container code. If the data layer object is placed after the container code, GTM won’t be able to access the information in it and the data layer will basically reset after loading.

Once the data layer object has been added to a page’s code, the brackets in the second line can be populated with information, variables, and events. Some types of information can be written directly into the data layer, but other types of information can be pushed into the data layer dynamically as a user interacts with your site, such as if someone downloads a file or if they add a certain amount of products to their shopping cart.


Working with GTM

Creating accounts and containers

To get started, go to tagmanager.google.com and create an account. Under “Setup Account,” enter the name of the company whose site is being managed and hit “Continue.”

01 Creating a GTM Account.png

Next, you’ll set up your container. Enter your domain name as the container name, choose which type of page or app it will be used on, and click “Create.” If you choose iOS or Android, you’ll also have to specify whether you’re using Firebase SDK or a legacy SDK.

02 Setup Container.png

Note that I specifically said to use the company name as the account name and the site’s domain for the container name. In theory, you can name these anything you want. This is just how Google recommends naming them as a best practice. Generally speaking, one of the best things you can do when working with GTM is make sure everything is named very clearly. Otherwise, it’s very easy for mistakes to be made.

Multiple GTM accounts can be managed within a single GTM account, but Google advises creating one container per domain. You don’t have to create separate containers for each individual tag or for every individual page on a site; all tags can all be placed within one container.

For most companies and organizations, one container is all they’ll need. But in the case of a company that has subsidiaries or owns separate businesses, the website for each subsidiary/business should get its own container and all the containers can be managed from one main GTM account. If a site has a subdomain that is treated separately from the main domain, the subdomain should also be given its own container.

When a marketing agency is managing tags on behalf of a company, Google recommends that the company create their own GTM account, then add the agency’s Google account as a user. This way, the agency can access GTM, but it’s easy for the company to revoke access should they decide to change agencies.

After creating your container, accept the GTM terms of service and you’ll be given your container code.

03 GTM Container Code.png

Once the container code has been added, you’re able to start creating tags. But before you get started, it’s a good idea to take some time to figure out exactly which tags you want to add. Even though there aren’t any limits to the amount of tags you can put in a container, for best performance, Google advises keeping the amount of tags you use to a minimum. If you’re migrating your tags to GTM from another tag manager or are making the switch from tags coded in your source code, this is a good time to review the tags currently on your site. In many cases, sites have tags that are associated with services they’re no longer using or were used to track things that aren’t being monitored anymore, so this is a good opportunity to “clean house,” so to speak.

Creating a tag

When you create or select a container, the first thing you’ll see is the GTM dashboard. We’ll eventually get around to talking about almost everything you see here, but let’s begin by creating a tag. Click “Add a New Tag” to open up a window where you’ll be able to name and configure your tag.

04 GTM Dashboard.png

Before we go any further into the process of creating tags, remember to name your tags very clearly. Since sites often use several different tags, you won’t want there to be any confusion about which tag does what. Google’s recommended tag naming convention is: Tag Type – Detail – Location. For example, a Google Analytics tag that tracks form submissions on a Contact Us page would be named “GA – Form Submission – Contact Us.” Including the location of a tag in its name is a good idea because it helps distinguish it from similar tags on other pages. So if I had other GA form submission tags on my site, specifying that this one is on the Contact Us page would help me avoid editing the wrong one by mistake.

Putting the tag type at the beginning of a tag name also helps keep your tags organized. GTM lists tags alphabetically, so if you’re creating multiple tags for the same service or tool, all of those tags will all be grouped together and easy to find.

Now, back to creating a tag. When you click “Add a new tag” on the dashboard, this is the window you’ll see. Choose “Tag Configuration” and you’ll be given a long list of tag templates, which includes many of the most commonly used types of tags. If any of these are what you’re looking for, click on it and enter the information requested. If you don’t see the type of tag you want to create listed, choose “Custom HTML” to add your own code.

Since the exact information you’ll need to provide will vary depending on which type of tag you’re working with, I can’t possibly go into how to make every single type of tag. But as an example, let’s say I wanted to notify Google Analytics anytime someone views my pricing page. After choosing Universal Analytics, this is what I’d see:

GA Pricing Page Tag Configuration Example.jpg

All I would need to do is choose “Page View” from the “Track Type” dropdown menu, then enter the variable with my Google Analytics account information. If I hadn’t created that variable ahead of time, I could make one now by clicking the dropdown menu under “Google Analytics Settings” and choosing “New Variable.”

If I wanted to make changes to the tag firing sequence or create a firing schedule, I could do that by clicking on the “Advanced Settings” option. Click outside the tag configuration window to go back to the previous screen.

Next, you’ll need to create at least one trigger. Click the “Triggering” box underneath “Tag Configuration” to get started. If you don’t have a previously created trigger to choose from in the list that opens up, click the + sign in the upper right corner of the window. This will bring up a new window where you’ll be asked to name your new trigger. Do that and click on the “Tag Configuration” box so see a list of trigger types. In my case, I’d choose “Page View.”

Remarketing Trigger Configuration Example.jpg

Since I only want my tag to fire on one page, I’d choose “Some Page Views,” then create a filter specifying that the page URL needs to equal the URL of my pricing page. If I had another filter to add, I could click the plus (+) button next to the filter to set one up. If I had created multiple filters for this tag and later decided to get rid of one of them, all I’d have to do is hit the subtract (–) button next to the filter in question. When you’re done, click outside the window to exit.

Once your tag and trigger have been configured, save it and you can either keep working by creating more tags or you can preview your tag and make sure it’s working correctly before publishing it.


Previewing, debugging, and publishing tags

GTM’s “Preview & Debug” mode lets you test tags before publication so that you can make sure everything is working correctly and that you won’t have any errors throwing off your data.

To enter “Preview & Debug,” click the “Preview” button in the upper right corner of the GTM dashboard and you’ll see an orange banner notifying you that you are now in “Preview” mode. Next, open the site you’re tagging. If you already have your site open in another tab, refresh the page and you should see a “Debug” panel at the bottom of your screen. (Don’t worry, visitors to your site won’t be able to see it.)

The “Debug” panel shows all sorts of detailed information about your tags, triggers, and data layer. On the left side of the panel is an event timeline summary, which outlines all the events that occur in the data layer. At a minimum, you should be seeing at least three events listed here: Page View, DOM Ready, and Window Loaded. It’s OK to see more than three events, but if any of those three are missing, there’s a problem that needs to be fixed.

When you click on any of the events in your timeline, you’ll see all the tags which are set to fire when that event occurs. Click on any of the tags to see more detailed information about its triggers, properties, and if there are any blocking triggers associated with it.

As you work in “Preview & Debug” mode, you’re the only one who can see the information about your tags. But let’s say you’re working as part of a team on a tagging project and you find an issue you want to bring to another person’s attention. There is a way to do that. Switch back over to your GTM dashboard and look at the orange banner. On the right, there’s a “Share Preview” button. Click on it and you’ll bring up a box where you can enter the URL of the page in question. This will generate a preview link you can use to send to another person.

If you’re having a hard time getting “Preview & Debug” to work correctly, Analytics Mania has a great guide to solving some of the most common reasons why this happens.

Even after a tag has been published, Google still makes it easy to go back and check to make sure there aren’t any problems. Google Tag Assistant is a free Chrome extension and once it’s installed, you can visit any page on your site and it will tell you if your tags are firing correctly or if there are any improvements that could be made. GTA uses a three color system to indicate its findings: green, blue, and red. Green means all of your tags are working, blue means GTA has suggestions for how a tag could be improved, and red means it’s not working.

Once it appears that all of your tags are firing correctly, you can go ahead and publish them. From the GTM dashboard, hit the “Submit” button in the upper right corner and you’ll be asked to review your changes. If everything looks OK, enter a name and description for your new container version and publish it.

When you publish changes in GTM, it creates a new version of your container. If there’s ever a problem and you have to revert to an earlier version of your container, all you have to do is click the “Versions” button at the top of the GTM dashboard, choose the version you’d like to revert to from the list, click “Action,” then “Publish.”

If you’re migrating your tags from another tag manager or from hard-coded tags on your site, Google advises setting up all of your tags in GTM, then removing your old tags all at once and publishing the GTM container with your new tags as quickly as possible. You might have a very small gap in your data collection, but there shouldn’t be any more issues after your new tags are live.


Workspaces, workspace changes, and activity history

If you have multiple people working on a tagging project at the same time, workspaces can help make life a little easier. Even if you’re not collaborating with others, sometimes having the option to create separate workspaces can still be very helpful.

In older versions of GTM, all edits had to be made in a common container draft. If one person or team finished adding tags before another person/team, they couldn’t publish their new tags without also publishing the other team’s tags-in-progress. But with workspaces, multiple users can work on tagging at the same time without interfering with each other’s work.

Each workspace uses the current published container version as a basis, but tags in each workspace can be edited, previewed, debugged, and even published independently from the tags in other workspaces. If you’re working with the free version of GTM, you can have up to three different workspaces, one default workspace and two others, but if you use Google Tag Manager 360, you can create an unlimited amount of workspaces.

When one workspace is published, it creates a new version of the container. If there are any other workspaces with unpublished changes saved in them, the user(s) working in those spaces will see a notice saying that they need to update the workspace. Updating the workspace syncs the changes in the container to their workspace. While it’s not required to do so to continue working, it’s generally best to stay on top of updates so that you’re not working with an outdated version of the container.

After syncing changes in a workspace, you’ll be notified if there are any conflicts which need to be resolved. If any conflicts exist, you’ll be asked to review them and either ignore the conflict or copy the change. When you copy the change, the field in question in your workspace will be overwritten with the information from the latest container version.

If necessary, you can set user permissions on workspaces to prevent users from making unwanted changes. For example, if you had a developer working on some really complicated custom tags, the developer might want to create a separate workspace to work in and limit the user permissions so that only they can make changes to it. This way, marketers will be able to go in and make changes without accidentally making changes to the custom tags.

Another great thing about GTM, particularly if you have more than one person working on tagging, is that it lets you see which changes were made, when they were made, and who made them. On the dashboard, you’ll see a Workspace Changes section, which outlines some of the most recent changes that have been made to tags and triggers. If mistakes any mistakes have been made, you can use the “Abandon Change” option to delete those changes. Beneath Workspace Changes, there’s Activity History, which shows all activity on a GTM account.


Additional resources

Google Tag Manager has a lot to offer, but learning how to use it in depth can be pretty overwhelming. This guide helped introduce you to the tool, but there’s still a lot more to learn if you want to use GTM to its full potential. LunaMetrics and Simo Ahava have written about GTM very extensively, so they’re excellent places to start if you have any questions or want to learn more. Of course, Google also has a lot of helpful information. Even if you’re not a developer, Google’s Tag Manager Guide for Developers is worth taking a look at since it does a great job of explaining some of the concepts related to GTM and has a lot of good information about how to use it. With all these resources, you should have all the information you need to get the most out of GTM.

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Google Questions and Answers: A Case Study

Posted by MiriamEllis

Ever since Google rolled out Questions and Answers in mid-2017, I’ve been trying to get a sense of its reception by consumers and brands. Initially restricted to Android Google Maps, this fascinating feature which enables local business owners and the public to answer consumer questions made it to desktop displays this past December, adding yet another data layer to knowledge panels and local finders.

As someone who has worked in Q&A forums for the majority of my digital marketing life, I took an immediate shine to the idea of Google Questions and Answers. Here’s a chance, I thought, for consumers and brands to take meaningful communication to a whole new level, exchanging requests, advice, and help so effortlessly. Here’s an opportunity for businesses to place answers to FAQs right upfront in the SERPs, while also capturing new data about consumer needs and desires. So cool!

But, so far, we seem to be getting off to a slow start. According to a recent, wide-scale GetFiveStars study, 25% of businesses now have questions waiting for them. I decided to hone in on San Francisco and look at 20 busy industries in that city to find out not just how many questions were being asked, but also how many answers were being given, and who was doing the answering. I broke down responders into three groups: Local Guides (LGs), random users (RUs), and owners (Os). I looked at the top 10 businesses ranking in the local finder for each industry:

Industry Number of Questions Number of Answers LGs RUs Os
Dentists 1 0 0 0 0
Plumbers 2 0
Chiropractors 0
Mexican Restaurants 10 23 22 1
Italian Restaurants 15 20 19 1
Chinese Restaurants 16 53 49 4
Car Dealers 4 5 3 2
Supermarkets 7 27 24 3
Clothing Stores 4 1 1
Florists 1 0
Hotels 44 142 114 28
Real Estate Agencies 0
General Contractors 1 0
Cell Phone Stores 14 3 3
Yoga Studios 1 0
Banks 1 0
Carpet Cleaning 0
Hair Salons 1 0
Locksmiths 1 0
Jewelry Stores 0


Takeaways from the case study

Here are some patterns and oddities I noticed from looking at 123 questions and 274 answers:

  1. There are more than twice as many answers as questions. While many questions received no answers, others received five, ten, or more.
  2. The Owners column is completely blank. The local businesses I looked at in San Francisco are investing zero effort in answering Google Questions and Answers.
  3. Local Guides are doing the majority of the answering. Of the 274 answers provided, 232 came from users who have been qualified as Local Guides by Google. Why so lopsided? I suspect the answer lies in the fact that Google sends alerts to this group of users when questions get asked, and that they can earn 3 points per answer they give. Acquiring enough points gets you perks like 3 free months of Google Play Music and a 75% discount off Google Play Movies.

    Unfortunately, what I’m seeing in Google Questions and Answers is that incentivizing replies is leading to a knowledge base of questionable quality. How helpful is it when a consumer asks a hotel if they have in-room hair dryers and 10 local guides jump on the bandwagon with “yep”? Worse yet, I saw quite a few local guides replying “I don’t know,” “maybe,” and even “you should call the business and ask.” Here and there, I saw genuinely helpful answers from the Local Guides, but my overall impression didn’t leave me feeling like I’d stumbled upon a new Google resource of matchless expertise.

  4. Some members of the public seem to be confused about the use of this feature. I noticed people using the answer portion to thank people who replied to their query, rather than simply using the thumbs up widget.

    Additionally, I saw people leaving reviews/statements, instead of questions:
    And with a touch of exasperated irony:
    And to rant:

  5. Some industries are clearly generating far more questions than others. Given how people love to talk about hotels and restaurants, I wasn’t surprised to see them topping the charts in sheer volume of questions and answers. What did surprise me was not seeing more questions being asked of businesses like yoga studios, florists, and hair salons; before I actually did the searches, I might have guessed that pleasant, “chatty” places like these would be receiving lots of queries.

Big brands everywhere are leaving Google Questions and Answers unanswered

I chose San Francisco for my case study because of its general reputation for being hip to new tech, but just in case my limited focus was presenting a false picture of how local businesses are managing this feature, I did some random searches for big brands around the state and around the country.

I found questions lacking owner answers for Whole Foods, Sephora, Taco Bell, Macy’s, Denny’s, Cracker Barrel, Target, and T-Mobile. As I looked around the nation, I noted that Walmart has cumulatively garnered thousands of questions with no brand responses.

But the hands-down winner for a single location lacking official answers is Google in Mountain View. 103 questions as of my lookup and nary an owner answer in sight. Alphabet might want to consider setting a more inspiring example with their own product… unless I’m misunderstanding their vision of how Google Questions and Answers is destined to be used.


Just what is the vision for Google Questions and Answers, I wonder?

As I said at the beginning of this post, it’s early days yet to predict ultimate outcomes. Yet, the current lay of the land for this feature has left me with more questions than answers:

  • Does Google actually intend questions to be answered by brands, or by the public? From what I’ve seen, owners are largely unaware of or choosing to ignore this feature many months post-launch. As of writing this, businesses are only alerted about incoming questions if they open the Google Maps app on an Android phone or tablet. There is no desktop GMB dashboard section for the feature. It’s not a recipe for wide adoption. Google has always been a fan of a crowdsourcing approach to their data, so they may not be concerned, but that doesn’t mean your business shouldn’t be.
  • What are the real-time expectations for this feature? I see many users asking questions that needed fast answers, like “are you open now?” while others might support lengthier response times, as in, “I’m planning a trip and want to know what I can walk to from your hotel.” For time-sensitive queries, how does Questions and Answers fit in with Google’s actual chat feature, Google Messaging, also rolled out last summer? Does Google envision different use cases for both features? I wonder if one of the two products will win out over time, while the other gets sunsetted.
  • What are the real, current risks to brands of non-management? I applauded Mike Blumenthal’s smart suggestion of companies proactively populating the feature with known FAQs and providing expert answers, and I can also see the obvious potential for reputation damage if rants or spam are ignored. That being said, my limited exploration of San Francisco has left me wondering just how many people (companies or consumers) are actually paying attention in most industries. Google Knowledge Panels and the Local Finder pop-ups are nearing an information bloat point. Do you want to book something, look at reviews, live chat, see menus, find deals, get driving directions, make a call? Websites are built with multiple pages to cover all of these possible actions. Sticking them all in a 1” box may not equal the best UX I’ve ever seen, if discovery of features is our goal.
  • What is the motivation for consumers to use the product? Personally, I’d be more inclined to just pick up the phone to ask any question to which I need a fast answer. I don’t have the confidence that if I queried Whole Foods in the AM as to whether they’ve gotten in organic avocados from California, there’d be a knowledge panel answer in time for my lunch. Further, some of the questions I’ve asked have received useless answers from the public, which seems like a waste of time for all parties. Maybe if the feature picks up momentum, this will change.
  • Will increasing rates of questions = increasing rates of business responses? According to the GetFiveStars study linked to above, total numbers of questions for the 1700 locations they investigated nearly doubled between November–December of 2017. From my microscopic view of San Francisco, it doesn’t appear to me that the doubling effect also happened for owner answers. Time will tell, but for now, what I’m looking for is question volume reaching such a boiling point that owners feel obligated to jump into management, as they have with reviews. We’re not there yet, but if this feature is a Google keeper, we could get there.

So what should you be doing about Google Questions and Answers?

I’m a fan of early adoption where it makes sense. Speculatively, having an active Questions and Answers presence could end up as a ranking signal. We’ve already seen it theorized that use of another Google asset, Google Posts, may impact local pack rankings. Unquestionably, leaving it up to the public to answer questions about your business with varying degrees of accuracy carries the risk of losing leads and muddying your online presence to the detriment of reputation. If a customer asks if your location has wheelchair access and an unmotivated third party says “I don’t know,” when, in fact, your business is fully ADA-compliant, your lack of an answer becomes negative customer service. Because of this, ignoring the feature isn’t really an option. And, while I wouldn’t prioritize management of Questions and Answers over traditional Google-based reviews at this point, I would suggest:

  1. Do a branded search today and look at your knowledge panel to see if you’ve received any questions. If so, answer them in your best style, as helpfully as possible
  2. Spend half an hour this week translating your company’s 5 most common FAQs into Google Questions and Answers queries and then answering them. Be sure you’re logged into your company’s Google account when you reply, so that your message will be officially stamped with the word “owner.” Whether you proactively post your FAQs while logged into your business’ account is up to you. I think it’s more transparent to do so.
  3. If you’re finding this part of your Knowledge Panel isn’t getting any questions, checking it once a week is likely going to be enough for the present.
  4. If you happen to be marketing a business that is seeing some good Questions and Answers activity, and you have the bandwidth, I’d add checking this to the daily social media rounds you make for the purpose of reputation management. I would predict that if Google determines this feature is a keeper, they’ll eventually start sending email alerts when new queries come in, as they’re now doing with reviews, which should make things easier and minimize the risk of losing a customer with an immediate need. Need to go pro on management right now due to question volume? GetFiveStars just launched an incredibly useful Google Q&A monitoring feature, included in some of their ORM software packages. Looks like a winner!
  5. Do be on the lookout for spam inquiries and responses, and report them if they arise.

If you’re totally new to Google Questions and Answers, this simple infographic will get you going in a flash:

For further tips on using Google Questions and Answers like a pro, I recommend following GetFiveStars’ 3-part series on this topic.


My questions, your answers

My case study is small. Can you help expand our industry’s knowledge base by answering a few questions in the comments to add to the picture of the current rate of adoption/usefulness of Google’s Questions and Answers? Please, let me know:

  1. Have you asked a question using this feature?
  2. Did you receive an answer and was it helpful?
  3. Who answered? The business, a random user, a Local Guide?
  4. Have you come across any examples of business owners doing a good job answering questions?
  5. What are your thoughts on Google Questions and Answers? Is it a winner? Worth your time? Any tips?

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Why It Can Pay to Get Links from Domains that Don’t Always Rank Highly – Whiteboard Friday

Posted by randfish

Contrary to popular belief, the top ranking pages aren’t always the best targets for your link building efforts. There are good reasons to chase those links, sure, but there are also drawbacks — as well as some hidden alternatives you may not have considered trying. This Whiteboard Friday delves into the pros and cons of targeting high-ranking sites for links and why you should consider a link intersect strategy, targeting sites that rank for broader topics, and earning links from publications ranking beyond page one of the SERPs.

https://fast.wistia.net/embed/iframe/a9vn7de6er?videoFoam=true

https://fast.wistia.net/assets/external/E-v1.js

Why It Can Pay to Get Links from Domains that Don't Always Rank Highly

Click on the whiteboard image above to open a high-resolution version in a new tab!

Video Transcription

Howdy, Moz fans, and welcome to another edition of Whiteboard Friday. This week we’re chatting about why it may not actually pay to get links expressly or exclusively from the websites and pages that are ranking highly for your keywords. There’s a bunch of reasons why behind this. There’s a corollary to it, which is high-ranking websites may not always be the best link targets.

Are these the *best* links you can get to rank for “target keyword(s)”?

So okay, let’s start with this question of when you’re trying to rank for a target keyword, let’s say you’re trying to rank for “stylish sofas.” You’ve decided you want to replace your couch, and you want something stylish. So you search for “stylish sofas.” The results that come up, we’re not talking about the paid results. That would be a mistake to try and get links from those. They’re pretty commercially focused. They probably don’t want to link to you, and I’m not sure it’s all that valuable, necessarily, at least from an SEO perspective. But are these links, the ones that rank in the organic results top five, are they necessarily the best links you could possibly get? There are some reasons for and some reasons against.

In favor:

Let’s talk about in favor of why these are good link targets. The first one is pretty simple and pretty obvious.

A. These pages get lots of real visitors interested in this topic who may click on/visit your site (if it’s linked-to here)

These pages get a lot of search volume, get a lot of search visits from this query. If you’re somewhere in this page, if my website is linked to here, that’s actually a really nice thing. Maybe someone will click on the top result and then they’ll find me and they’ll click on it and they’ll go to my page instead. That would be great. So if it’s linked to there, you could get direct traffic from those pages, so nice link to have.

B. Google has put some trust/indication of authority in these pages and sites

Google has put some sort of trust and a signal of authority for this keyword by ranking it here. It’s saying, “Hey, you know what? This top result and these top results are all highly relevant and authoritative for this particular query.”

So those are absolutely true things, but I think they bias SEOs and link builders to think in terms of, oh, if I want to rank well for this, these are the only things I should be looking at or the first things I should be looking at or the best places to get links from.

Against:

Here’s why that’s not necessarily the case, so some points against.

A. Ranking is not actually an explicit signal from Google that these are the best quality links

By putting a page here, in the top of the results, Google is saying, “We, Google, believe that this page will do a great job of solving the searcher’s query,” not, “We, Google, know that if you get a link from here, you have a very good chance to rank for this keyword.” That’s not explicitly or implicitly said. It’s not an implication. Google has never stated that publicly. I don’t think it’s necessarily the smartest thing to do in their ranking algorithm to have this recursive system that looks at who that already ranks is linking to someone else and replace them. That would be poor for Google’s own user experience for a bunch of reasons.

B. Google and searchers expect that these pages that rank here are going to solve the searcher’s query themselves (not force another click)

Not they’re going to link to something that’s going to solve the searcher’s query, at least certainly not necessarily, and definitely that they’re not going to force you to make another click. Google wants to rank pages here that solve the searcher’s problem directly. So saying, “Oh, well, I don’t think they do that and maybe they should link to me to solve this aspect of the problem,” this is a spurious connection.

C. Of course, earning links from these pages, incredibly difficult

These people, especially if they’re ranking for a commercial, non-branded query, like “stylish sofas,” they really, really don’t want to link to one of their competitors, to someone who’s trying to actively outrank them. That would be pretty challenging.

I recognize that many times when link builders go about this, they look at, okay, this page is ranking. Let me see if I can find another page from this domain from which I can get a link. That’s not terrible logic. That’s a totally reasonable way to go about link building. But whether it’s the best or the only one is what I’m going to challenge here. I don’t think it is necessarily the best or only way that you should go about doing your link building for all these reasons we’ve just talked about.

Alternatively, links like these may be more achievable and provide more ranking value:

Now, what are the alternatives? You might be asking yourself, “Well, Rand, show me where should I be doing this if not from here?” I’m going to present a few alternatives. There’s obviously an infinite number of link building tactics you could pursue, but I think some of the smarter ones would be to think about some alternatives like…

1. Sites and pages that link to multiple high-ranking targets

For example, if one and three and four are all linked to by SiteA.com, SiteA.com seems to carry, not necessarily for sure, it could be correlation and not causation, but it’s certainly worth looking at as to whether Site A is relevant and provides high-quality links and could conceptually link to you and whether that’s a good resource. I think that link intersect concept is a really good one to start with. In fact, I think, from a logic perspective, it makes more sense that sites and pages that tend to link to these top results probably provide more potential power to your ranking authority than just the pages that are already ranking.

2. Sites and pages that rank well for what I’d call broader keywords/broader topics related to the space you’re in

So if it’s “stylish sofas,” you might look at keywords like, well, who’s ranking for “interior design” or “interior design magazines” or “interior design events” or perhaps it’s “decoration ideas.” If I can find the people who are ranking for those sorts of things, that probably is going to say those are the types of places that will link out to other resources that have more specific targeting, like targeting “stylish sofas,” and probably provide a lot of value there.

3. Influential publications and resources in the topic space that may not be doing good keyword targeting or SEO

I like going and trying to find influential publications and resources, that are in the topic space, that might not actually be doing good keyword targeting or good SEO, which means it’s hard to use Google to find them. You may find them ranking on page two, page three, or page four. You may need to do some other types of research, like look on Instagram and see what companies or what publications are using these hashtags and have lots of followers in this interior design or decoration or furniture space.

From there, that will lead you to influential publications in the space that maybe have lots of readership, lots of engagement on social channels or on their website, but haven’t done a particularly great job in Google. Those influential publications, I think Google is doing a very good job of identifying, “Hey, wait a minute. Here’s a bunch of publications that are in important in space X and they are all linking to this website, which is doing a good job of targeting these keywords. So, therefore, that’s who we should potentially rank.”

So hopefully, this Whiteboard Friday will help you to expand your link building opportunities and also to recognize why the top ranking pages might not always be and certainly aren’t necessarily the best link targets.

Thanks everyone. We’ll see you again next week for another edition of Whiteboard Friday. Take care.

Video transcription by Speechpad.com

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Why Search Agencies Should Embrace the Adjacency of Email Marketing

Posted by davidmihm

As someone who’s spent virtually his entire career in local search, I’m by no means an early proponent of email. But in my interactions at marketing conferences, studies of industry research, and social media conversations, I get the feeling that many of my peers are even further down the adoption curve than I’ve been.

With this post, I encourage you to take a hard look at email marketing for yourselves, or an even harder look if you’ve already done so. If you’ve focused exclusively on offering SEO and SEM services to clients in the past, I hope I’ll convince you that email should be a natural and profitable complement to those offerings.

And if you’re a local business reading this post, I hope many of these points convince you to take a look at email marketing yourselves!

Making the case for email

High ROI

With a return on investment (ROI) of 44:1, marketers consistently rate email as the top-performing channel. According to Campaign Monitor, that ROI has actually increased since 2015, and it’s particularly true for B2B companies. Despite the supposed unpopularity of email among millennials, it remains far and away the most-preferred channel by which to receive communication from a business.

Just plain cheap

The fact that email’s so cheap helps the denominator of that 44:1 stat a bunch. Mailchimp is free up to 2,000 subscribers, as are MailerLite and SendinBlue, and many other providers offer plans under $10/month depending on your number of subscribers.

It’s also cheap in terms of time cost. Unlike social media where daily or even hourly presence performs best, email allows you to duck in and duck out as you have time.

As far as the numerator, average open rates far exceed social media reach on most platforms. And even if they don’t open, ⅓ of people report purchasing based on an email they received from a brand (!). Search provides better purchase intent, but the top-of-mind awareness and referral potential from email is unmatched.

Makes other channels more effective

Gathering customer email addresses is essential for other critical forms of local business marketing already — you need an email address to ask for a review, build lookalike audiences, and make customer intelligence solutions like FullContact most effective.

Actually offering something of value, whether that’s a discount code, loyalty program, whitepaper, or newsletter subscription, increases the odds of earning that email address for all of those purposes.

Last best option?

Frankly, the number of organic digital channels available to small businesses is shrinking. Facebook’s latest announcement signals a tough road ahead there for businesses without the budget to Boost posts, and Google’s expansion of its Local Service Ad program to verticals and locales across the United States in the next couple of years seems inevitable to me. Now is the time to start building an email program as these monetization pressures intensify.

Why agencies should offer email

Your customers know it works.

Local businesses might be more aware of email’s potency than some of the agencies that are serving them. Email consistently rates among the top three marketing channels in industry surveys by the Local Search Association, StreetFight, Clutch, and more.

At the very least, email requires barely any client education. Unlike the black box of SEO or the complexity of PPC, by and large, small businesses inherently understand email marketing. They know they should be sending emails to their customers, but many of them just aren’t yet doing it, or are doing it poorly.

It’s a concrete deliverable.

Unlike so much of the behind-the-scenes work that leads to success in SEO, clients can actually see an email campaign delivered to their inbox, as well as the results of that campaign: every major Email Service Provider tracks opens and clicks by default.

It leverages existing offerings.

I already mentioned some of the ways that email marketing complements other channels above. But it can tie in even more closely to an agency’s existing content offering: many of you are already developing full content calendars, or at the very least social content.

<pitch>(For those clients whom you’re helping with social media, their newsletter can be built using Tidings with no additional effort on your part.)</pitch>

Building email into your client content strategy can help their content reach a deeper audience, and possibly even a different audience.

It’s predictable.

Though you could argue that the Gmail and Apple Mail interface configurations are algorithms of a kind, generally speaking, email marketing is not subject to wild algorithmic changes or inexplicable ranking fluctuations.

And unlike Google’s unrealistic link building axiom that great content will naturally attract inbound links, great content actually does naturally attract more subscribers and more customers as they receive forwarded emails.

You can expand it over time.

Unlike SEO for local businesses, which generally includes relatively easy wins up front and gets progressively harder to deliver the same value over time, email marketing offers numerous opportunities to expand the scope of your engagement with a client.

Beyond fulfilling the emails themselves, there are plenty of other email-related services to offer, including managing and optimizing list sign-up, welcome emails and drip campaigns, A/B testing subject lines and content, and ongoing customer intelligence.

Tactical ingredients for success with email

Use a reputable Email Service Provider.

Running an email marketing program through Gmail or Outlook is an easy way to get your primary address blacklisted. You also won’t have access to open rate or click rate, nor an easy way to automate signups onto specific lists or segments.

Be consistent.

Setting expectations for your subscribers and then following through on those expectations is a particularly important practice for email newsletters, but also holds true for explicitly commercial emails and automated emails.

You should be generally consistent with the day on which you send weekly specials, appointment reminders, or service follow-ups. Consistency helps form a habit among your subscribers.

Consistency also applies to branding. It’s fine to A/B test subject lines and content types over time, but don’t shoot yourself in the foot from a brand perspective by designing every email you send from scratch. Leave that kind of advanced development to big brands with full in-house email teams.

The other reason to be consistent is that designing for email is really, really difficult — a lesson I learned the hard way last year prior to launching Tidings. Complex email clients like Microsoft Outlook use their own markup languages to render emails, and older email clients can’t interpret a lot of modern HTML or CSS declarations.

Choose a mobile-first template.

Make sure your layout renders well on phones, since that’s where more than 2/3 of email gets opened. Two- or three-column layouts that force pinching and zooming on mobile devices are a no-no, and at this point, most subscribers are used to scrolling a bit to see content.

As long as your template reflects your brand accurately, the content of that layout is far more important than its design. Look no further than the simple email layouts chosen by some of the most successful companies in their respective industries, including Amazon, Kayak, and Fast Company.

Pick a layout that’s proven to work on phones and stick with it.

Include an email signup button or form prominently on your website.

It’s become a best practice to include social icons in the header and/or footer of your website. But there’s an obvious icon missing from so many sites!

An email icon should be the first one in the lineup, since it’s the channel where your audience is most likely to see your content.

Also consider using Privy or Mailmunch to embed a signup banner or popover on your website with minimal code.

The specific place of newsletters

Plenty of people way smarter than me are on the newsletter bandwagon (and joined it much earlier than I did). Moz has been sending a popular “Top 10” newsletter for years, Kick Point sends an excellent weekly synopsis, and StreetFight puts out a great daily roundup, just to name a few. As a subscriber, those companies are always top-of-mind for me as thought leaders with their fingers on the pulse of digital marketing.

But newsletters work far beyond the digital marketing industry, too.

Sam Dolnick, the man in charge of the New York Times’ digital initiatives, puts a lot of stock in newsletters as a cornerstone channel, calling them “a lo-fi way to form a deep relationship with readers.”

I love that description. I think of a newsletter as a more personalized social channel. In the ideal world it’s halfway between a 1:1 email and a broadcast on Facebook or Twitter.

Granted, a newsletter may not be right for every local business, and it’s far from the only kind of email marketing you should be doing. But it’s also one of the easiest ways to get started with email marketing, and as Sam Dolnick said, an easy-to-understand way to start building relationships with customers.

For more newsletter best practices, this ancient (1992!) article actually covers print newsletters but almost all of its advice applies equally well to digital versions!

A great option or a strategic imperative?

Facebook’s ongoing reduction in organic visibility, Google’s ongoing evolution of the local SERP, and the shift to voice search will combine to create an existential threat to agencies that serve smaller-budget local businesses over the next 2–3 years.

Agencies simply can’t charge the margin to place paid ads that they can charge for organic work, particularly as Google and Facebook do a better and better job of optimizing low-budget campaigns. More ads, more Knowledge Panels, and more voice searches mean fewer organic winners at Google than ever before (though because overall search volume won’t decline, the winners will win bigger than ever).

Basic SEO blocking-and-tackling such as site architecture, title tags, and citation building will always be important services, but their impact for local businesses has declined over the past decade, due to algorithmic sophistication, increased competition, and decreased organic real estate.

To grow or even maintain your client base, it’ll be critical for you as an agency to offer additional services that are just as effective and scalable as these techniques were a decade ago.

As a concrete, high-margin, high-ROI deliverable, email should be a centerpiece of those additional services. And if it just doesn’t feel like something you’re ready to take on right now, Tidings is happy to handle your referrals :D!

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

An Investigation Into Google’s Maccabees Update

Posted by Dom-Woodman

December brought us the latest piece of algorithm update fun. Google rolled out an update which was quickly named the Maccabees update and the articles began rolling in (SEJ , SER).

The webmaster complaints began to come in thick and fast, and I began my normal plan of action: to sit back, relax, and laugh at all the people who have built bad links, spun out low-quality content, or picked a business model that Google has a grudge against (hello, affiliates).

Then I checked one of my sites and saw I’d been hit by it.

Hmm.

Time to check the obvious

I didn’t have access to a lot of sites that were hit by the Maccabees update, but I do have access to a relatively large number of sites, allowing me to try to identify some patterns and work out what was going on. Full disclaimer: This is a relatively large investigation of a single site; it might not generalize out to your own site.

My first point of call was to verify that there weren’t any really obvious issues, the kind which Google hasn’t looked kindly on in the past. This isn’t any sort of official list; it’s more of an internal set of things that I go and check when things go wrong, and badly.

Dodgy links & thin content

I know the site well, so I could rule out dodgy links and serious thin content problems pretty quickly.

(For those of you who’d like some pointers on the kinds of things to check for, follow this link down to the appendix! There’ll be one for each section.)

Index bloat

Index bloat is where a website has managed to accidentally get a large number of non-valuable pages into Google. It can be sign of crawling issues, cannabalization issues, or thin content problems.

Did I call the thin content problem too soon? I did actually have some pretty severe index bloat. The site which had been hit worst by this had the following indexed URLs graph:

However, I’d actually seen that step function-esque index bloat on a couple other client sites, who hadn’t been hit by this update.

In both cases, we’d spent a reasonable amount of time trying to work out why this had happened and where it was happening, but after a lot of log file analysis and Google site: searches, nothing insightful came out of it.

The best guess we ended up with was that Google had changed how they measured indexed URLs. Perhaps it now includes URLs with a non-200 status until they stop checking them? Perhaps it now includes images and other static files, and wasn’t counting them previously?

I haven’t seen any evidence that it’s related to m. URLs or actual index bloat — I’m interested to hear people’s experiences, but in this case I chalked it up as not relevant.

Appendix help link

Poor user experience/slow site

Nope, not the case either. Could it be faster or more user-friendly? Absolutely. Most sites can, but I’d still rate the site as good.

Appendix help link

Overbearing ads or monetization?

Nope, no ads at all.

Appendix help link

The immediate sanity checklist turned up nothing useful, so where to turn next for clues?

Internet theories

Time to plow through various theories on the Internet:

  1. The Maccabees update is mobile-first related
    • Nope, nothing here; it’s a mobile-friendly responsive site. (Both of these first points are summarized here.)
  2. E-commerce/affiliate related
    • I’ve seen this one batted around as well, but neither applied in this case, as the site was neither.
  3. Sites targeting keyword permutations
    • I saw this one from Barry Schwartz; this is the one which comes closest to applying. The site didn’t have a vast number of combination landing pages (for example, one for every single combination of dress size and color), but it does have a lot of user-generated content.

Nothing conclusive here either; time to look at some more data.

Working through Search Console data

We’ve been storing all our search console data in Google’s cloud-based data analytics tool BigQuery for some time, which gives me the luxury of immediately being able to pull out a table and see all the keywords which have dropped.

There were a couple keyword permutations/themes which were particularly badly hit, and I started digging into them. One of the joys of having all the data in a table is that you can do things like plot the rank of each page that ranks for a single keyword over time.

And this finally got me something useful.

The yellow line is the page I want to rank and the page which I’ve seen the best user results from (i.e. lower bounce rates, more pages per session, etc.):

Another example: again, the yellow line represents the page that should be ranking correctly.

In all the cases I found, my primary landing page — which had previously ranked consistently — was now being cannabalized by articles I’d written on the same topic or by user-generated content.

Are you sure it’s a Google update?

You can never be 100% sure, but I haven’t made any changes to this area for several months, so I wouldn’t expect it to be due to recent changes, or delayed changes coming through. The site had recently migrated to HTTPS, but saw no traffic fluctuations around that time.

Currently, I don’t have anything else to attribute this to but the update.

How am I trying to fix this?

The ideal fix would be the one that gets me all my traffic back. But that’s a little more subjective than “I want the correct page to rank for the correct keyword,” so instead that’s what I’m aiming for here.

And of course the crucial word in all this is “trying”; I’ve only started making these changes recently, and the jury is still out on if any of it will work.

No-indexing the user generated content

This one seems like a bit of no-brainer. They bring an incredibly small percentage of traffic anyway, which then performs worse than if users land on a proper landing page.

I liked having them indexed because they would occasionally start ranking for some keyword ideas I’d never have tried by myself, which I could then migrate to the landing pages. But this was a relatively low occurrence and on-balance perhaps not worth doing any more, if I’m going to suffer cannabalization on my main pages.

Making better use of the Schema.org “About” property

I’ve been waiting a while for a compelling place to give this idea a shot.

Broadly, you can sum it up as using the About property pointing back to multiple authoritative sources (like Wikidata, Wikipedia, Dbpedia, etc.) in order to help Google better understand your content.

For example, you might add the following JSON to an article an about Donald Trump’s inauguration.

[
          {
            "@type": "Person",
            "name": "President-elect Donald Trump",
            "sameAs": [
              "https://en.wikipedia.org/wiki\Donald_Trump",
              "http://dbpedia.org/page/Donald_Trump",
              "https://www.wikidata.org/wiki/Q22686"
            ]
          },
          {
            "@type": "Thing",
            "name": "US",
            "sameAs": [
              "https://en.wikipedia.org/wiki/United_States",
              "http://dbpedia.org/page/United_States",
              "https://www.wikidata.org/wiki/Q30"
            ]
          },
          {
            "@type": "Thing",
            "name": "Inauguration Day",
            "sameAs": [
              "https://en.wikipedia.org/wiki/United_States_presidential_inauguration",
              "http://dbpedia.org/page/United_States_presidential_inauguration",
              "https://www.wikidata.org/wiki/Q263233"
            ]
          }
        ]

The articles I’ve been having rank are often specific sub-articles about the larger topic, perhaps explicitly explaining them, which might help Google find better places to use them.

You should absolutely go and read this article/presentation by Jarno Van Driel, which is where I took this idea from.

Combining informational and transactional intents

Not quite sure how I feel about this one. I’ve seen a lot of it, usually where there exist two terms, one more transactional and one more informational. A site will put a large guide on the transactional page (often a category page) and then attempt to grab both at once.

This is where the lines started to blur. I had previously been on the side of having two pages, one to target the transactional and another to target the informational.

Currently beginning to consider whether or not this is the correct way to do it. I’ll probably try this again in a couple places and see how it plays out.

Final thoughts

I only got any insight into this problem because of storing Search Console data. I would absolutely recommend storing your Search Console data, so you can do this kind of investigation in the future. Currently I’d recommend paginating the API to get this data; it’s not perfect, but avoids many other difficulties. You can find a script to do that here (a fork of the previous Search Console script I’ve talked about) which I then use to dump into BigQuery. You should also check out Paul Shapiro and JR Oakes, who have both provided solutions that go a step further and also do the database saving.

My best guess at the moment for the Maccabees update is there has been some sort of weighting change which now values relevancy more highly and tests more pages which are possibly topically relevant. These new tested pages were notably less strong and seemed to perform as you would expect (less well), which seems to have led to my traffic drop.

Of course, this analysis is currently based off of a single site, so that conclusion might only apply to my site or not at all if there are multiple effects happening and I’m only seeing one of them.

Has anyone seen anything similar or done any deep diving into where this has happened on their site?


Appendix

Spotting thin content & dodgy links

For those of you who are looking at new sites, there are some quick ways to dig into this.

For dodgy links:

  • Take a look at something like Searchmetrics/SEMRush and see if they’ve had any previous penguin drops.
  • Take a look into tools Majestic and Ahrefs. You can often get this free, Majestic will give you all the links for your domain for example if you verify.

For spotting thin content:

  • Run a crawl
    • Take a look at anything with a short word count; let’s arbitrarily say less than 400 words.
    • Look for heavy repetition in titles or meta descriptions.
    • Use the tree view (that you can find on Screaming Frog, for example) and drill down into where it has found everything. This will quickly let you see if there are pages where you don’t expect there to be any.
    • See if the number of URLs found is notably different to the indexed URL report.
  • Soon you will be able to take a look at Google’s new index coverage report. (AJ Kohn has a nice writeup here).
  • Browse around with an SEO chrome plugin that will show indexation. (SEO Meta in 1 Click is helpful, I wrote Traffic Light SEO for this, doesn’t really matter what you use though.)

Index bloat

The only real place to spot index bloat is the indexed URLs report in Search Console. Debugging it however is hard, I would recommend a combination of log files, “site:” searches in Google, and sitemaps when attempting to diagnose this.

If you can get them, the log files will usually be the most insightful.

Poor user experience/slow site

This is a hard one to judge. Virtually every site has things you can class as a poor user experience.

If you don’t have access to any user research on the brand, I will go off my gut combined with a quick scan to compare to some competitors. I’m not looking for a perfect experience or anywhere close, I just want to not hate trying to use the website on the main templates which are exposed to search.

For speed, I tend to use WebPageTest as a super general rule of thumb. If the site loads below 3 seconds, I’m not worried; 3–6 I’m a little bit more nervous; anything over that, I’d take as being pretty bad.

I realize that’s not the most specific section and a lot of these checks do come from experience above everything else.

Overbearing ads or monetization?

Speaking of poor user experience, the most obvious one is to switch off whatever ad-block you’re running (or if it’s built into your browser, to switch to one without that feature) and try to use the site without it. For many sites, it will be clear cut. When it’s not, I’ll go off and seek other specific examples.

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Should SEOs & Content Marketers Play to the Social Networks’ “Stay-On-Our-Site” Algorithms? – Whiteboard Friday

Posted by randfish

Increasingly, social networks are tweaking their algorithms to favor content that remains on their site, rather than send users to an outside source. This spells trouble for those trying to drive traffic and visitors to external pages, but what’s an SEO or content marketer to do? Do you swim with the current, putting all your efforts toward placating the social network algos, or do you go against it and continue to promote your own content? This edition of Whiteboard Friday goes into detail on the pros and cons of each approach, then gives Rand’s recommendations on how to balance your efforts going forward.

https://fast.wistia.net/embed/iframe/1tgzuflr38?videoFoam=true

https://fast.wistia.net/assets/external/E-v1.js

Should SEOs and content marketers play to the social networks "stay-on-our-site" algorithms?

Click on the whiteboard image above to open a high-resolution version in a new tab!

Video Transcription

Howdy, Moz fans, and welcome to another edition of Whiteboard Friday. This week we’re chatting about whether SEOs and content marketers, for that matter, should play to what the social networks are developing in their visibility and engagement algorithms, or whether we should say, “No. You know what? Forget about what you guys are doing. We’re going to try and do things on social networks that benefit us.” I’ll show you what I’m talking about.

Facebook

If you’re using Facebook and you’re posting content to it, Facebook generally tends to frown upon and lower the average visibility and ability of content to reach its audience on Facebook if it includes an external link. So, on average, posts that include an external link will fare more poorly in Facebooks’ news feed algorithm than on-site content, exclusively content that lives on Facebook.

For example, if you see this video promoted on Facebook.com/Moz or Facebook.com/RandFishkin, it will do more poorly than if Moz and I had promoted a Facebook native video of Whiteboard Friday. But we don’t want that. We want people to come visit our site and subscribe to Whiteboard Friday here and not stay on Facebook where we only reach 1 out of every 50 or 100 people who might subscribe to our page.

So it’s clearly in our interest to do this, but Facebook wants to keep you on Facebook’s website, because then they can do the most advertising and targeting to you and get the most time on site from you. That’s their business, right?

Twitter

The same thing is true of Twitter. So it tends to be the case that links off Twitter fare more poorly. Now, I am not 100% sure in Twitter’s case whether this is algorithmic or user-driven. I suspect it’s a little of both, that Twitter will promote or make most visible to you when you log in to Twitter the posts that have been made or the tweets that have been made that are self-contained. They live entirely on Twitter. They might contain a bunch of different stuff, a poll or images or be a thread. But links off Twitter will be dampened.

Instagram

The same thing is true on Instagram. Well, on Instagram, they’re kind of the worst. They don’t allow links at all. The only thing you can do is a link in profile. More engaging content on Instagram, as of just a couple weeks ago, more engaging content equals higher placement in the feed. In fact, Instagram has now just come out and said that they will show you content posts from people you’re not following but that they think will be engaging to you, which gives influential Instagram accounts that get lots of engagement an additional benefit, but kind of hurts everyone else that you’re normally following on the network.

LinkedIn

LinkedIn, LinkedIn’s algorithm includes extra visibility in the feed for self-contained post content, which is why you see a lot of these posts of, “Oh, here’s all the crazy amounts of work I did and what my experience was like building this or doing that.” If it’s a self-contained, sort of blog post-style content in LinkedIn that does not link out, it will do much better than posts that contain an external link, which LinkedIn sort of dampens in their visibility algorithm for their feed.

Play to the algos?

So all of these sites have these components of their algorithm that basically reward you if you are willing to play to their algos, meaning you keep all of the content on their sites and platform, their stuff, not yours. You essentially play to what they’re trying to achieve, which is more time on site for them, more engagement for them, less people going away to other places. You refuse or you don’t link out, so no external linking to other places. You maintain sort of what I call a high signal to noise ratio, so that rather than sharing all the things you might want to share, you only share posts that you can count on having relatively high engagement.

That track record is something that sticks with you on most of these networks. Facebook, for example, if I have posts that do well, many in a row, I will get more visibility for my next one. If my last couple of posts have performed poorly on Facebook, my next one will be dampened. You sort of get a string or get on a roll with these networks. Same thing is true on Twitter, by the way.

$#@! the algos, serve your own site?

Or you say, “Forget you” to the algorithms and serve your own site instead, which means you use the networks to tease content, like, “Here’s this exciting, interesting thing. If you want the whole story or you want to watch full video or see all the graphs and charts or whatever it is, you need to come to our website where we host the full content.” You link externally so that you’re driving traffic back to the properties that you own and control, and you have to be willing to promote some potentially promotional content, in order to earn value from these social networks, even if that means slightly lower engagement or less of that get-on-a-roll reputation.

My recommendation

The recommendation that I have for SEOs and content marketers is I think we need to balance this. But if I had to, I would tilt it in favor of your site. Social networks, I know it doesn’t seem this way, but social networks come and go in popularity, and they change the way that they work. So investing very heavily in Facebook six or seven years ago might have made a ton of sense for a business. Today, a lot of those investments have been shown to have very little impact, because instead of reaching 20 or 30 out of 100 of your followers, you’re reaching 1 or 2. So you’ve lost an order of magnitude of reach on there. The same thing has been true generally on Twitter, on LinkedIn, and on Instagram. So I really urge you to tilt slightly to your own site.

Owned channels are your website, your email, where you have the email addresses of the people there. I would rather have an email or a loyal visitor or an RSS subscriber than I would 100 times as many Twitter followers, because the engagement you can get and the value that you can get as a business or as an organization is just much higher.

Just don’t ignore how these algorithms work. If you can, I would urge you to sometimes get on those rolls so that you can grow your awareness and reach by playing to these algorithms.

So, essentially, while I’m urging you to tilt slightly this way, I’m also suggesting that occasionally you should use what you know about how these algorithms work in order to grow and accelerate your growth of followers and reach on these networks so that you can then get more benefit of driving those people back to your site. You’ve got to play both sides, I think, today in order to have success with the social networks’ current reach and visibility algorithms.

All right, everyone, look forward to your comments. We’ll see you again next week for another edition of Whiteboard Friday. Take care.

Video transcription by Speechpad.com

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Free Local SEO Tools That Belong in Your Kit

Posted by MiriamEllis

What a lot can change in just a few years! When I wrote the original version of this post in January 2014, the local SEO industry didn’t have quite the wealth of paid tools that now exists, and many of the freebies on my previous list have been sunsetted. Definitely time for a complete refresh of the most useful free tools, widgets, and resources I know of to make marketing local businesses easier and better.

While all of the tools below are free, note that some will require you to sign up for access. Others are limited, no-cost, or trial versions that let you get a good sense of what they provide, enabling you to consider whether it might be worth it to buy into paid access. One thing you may notice: my new list of local SEO tools offers increased support for organic SEO tasks, reflective of our industry’s growing understanding of how closely linked organic and local SEO have become.

Now, let’s open this toolkit and get 2018 off to a great start!


For Research

US Census Bureau Tool Set

Looking to better understand a target community for marketing purposes? You’ll find 20+ useful resources from the US Census Bureau, including population statistics, economic data, mapping and geocoding widgets, income and language information, and much more.

Client Onboarding Questionnaire & Phone Script

Onboarding a new client? Reduce repetitious follow-ups by asking all of the right questions the first time around with this thorough questionnaire and easy-to-follow phone call script from Moz. Includes helpful tips for why you are asking each question. As local SEO veterans will tell you, a missed question can lead to unhappy (and costly) surprises down the marketing road. Be sure you have the total picture of an incoming client in clear view before you begin strategizing.

Location Information Spreadsheet

Vital when marketing multi-location businesses, this free Moz spreadsheet will ensure that you’ve got all the info at your fingertips about each locale of a company.

*Pro tip: When working with large enterprises, be certain that the data you’re inputting in this spreadsheet has been approved by all relevant departments. It’s really no fun to find out six months into a marketing campaign that there’s internal disagreement about company NAP or other features.

Local Competitive Audit Spreadsheet

Now we’re really getting down to brass tacks. When you need to look for answers to the perennial client question, “Why is that guy outranking me?”, this free Moz spreadsheet will help you document key competitive data. The end result of filling out the sheet will be two columns of stats you can compare and contrast in your quest to discover competitors’ ranking strengths and weaknesses. Need more guidance? Read my blog post in which I put this audit spreadsheet into action for two San Francisco Bay Area Chinese restaurants.

Manual GeoLocation Chrome Extension

Watch Darren Shaw demo using this tool to show how a local pack changes when a user virtually crosses a street and you’ll quickly understand how useful this Chrome extension will be in approximating the impacts of user-to-business proximity. Works well on desktop devices.

Our industry still hasn’t fully recovered from Google removing the Local Search filter from its engine in 2015, and I still live in hope that they will bring it back one day, but in the meantime, this extension gives us a good sense of how searcher location affects search results. In fact, it may even be a superior solution.

The MozBar SEO Toolbar

Local businesses in competitive markets must master traditional SEO, and the free MozBar provides a wonderful introduction to the metrics you need to look at in analyzing the organic strengths and weaknesses of clients and competitors. On-page elements, link metrics, markup, HTTP status, optimization opportunities — get the data you need at a glance with the MozBar.

Google Advanced Search Operators

Not a tool, per se, but the best tutorial I have ever seen on using Google advanced search operators to deepen your research. Dr. Pete breaks this down into 67 steps that will enable you to use these search refinements for content and title research, checking for plagiarism, technical SEO audits, and competitive intelligence. Be totally wizardly and impress your clients and teammates, simply by knowing how to format searches in smart ways.

Google Search Console

Apologies if it already seems like a no-brainer to you that you should be signed up for Google’s console that gives you analytics, alerts you to serious errors, and so much more, but local SEO is just now crossing the threshold of understanding how deeply connected it is to organic search. When playing in Google’s backyard, GSC is a must-have for businesses of every type.

BrightLocal’s Search Results Checker

This popular tool does an excellent job of replicating local search results at a city or zip code level. In some cases, it’s best to search by city (for example, when there are multiple towns covered by a single zip code), but other times, it’s better search by zip code (as in the case of a large city with multiple zip codes). The tool doesn’t have the capability to recreate user-level results, so always remember that the proximity of a given user to a business may create quite different results than what you’ll see searching at a city or zip code level. I consider this a great tool to suss out the lay of the land in a community, identifying top competitors.

Offline Conversion Tracker Form

Give this handy Whitespark form to anyone who answers your phone so that they can document the answer to the important question, “How did you hear about us?” Submitted information is saved to Whitespark’s database and tracked in Google Analytics for your future reference and analysis. For local businesses, knowledge of offline factors can be priceless. This form provides a simple point of entry into amassing real-world data.


For Content

Answer the Public

One of the best-loved keyword research tools in the digital marketing world, Answer the Public lets you enter a keyword phrase and generate a large number of questions/topics related to your search. One of the most awesome facets of this tool is that it has a .CSV download feature — perfect for instantly generating large lists of keywords that you can input into something like Moz Keyword Explorer to begin the sorting process that turns up the most powerful keywords for your content dev and on-page optimization.

Buzzsumo

Another great content inspiration tool, Buzzsumo shows you lets you enter a keyword, topic or domain name, and then shows you which pieces are getting the most social shares. For example, a search for wholefoodsmarket.com shows that a highly shared piece of content at the time of my search is about an asparagus and broccoli soup. You can also sort by content type (articles, videos, infographics, etc.). Use of Buzzsumo can help you generate topics that might be popular if covered on your website.

OSHA Standard Industrial Classification (SIC) System Search

Another interesting resource for brainstorming a wide pool of potential keywords for content dev consideration, OSHA’s SIC search returns big, comprehensive lists. Just look up your industry’s SIC code, and then enter it along with a keyword/category to get your list.

USPS Look Up a ZIP Code Widget

Working with service area businesses (SABs)? Note the second tab in the menu of this widget: Cities by zip code. When you know the zip code of a business you’re marketing you can enter it into this simple tool to get a list of every city in that zip. Now, let’s not take a wrong step here: don’t publish large blocks of zips or city names on any website, but do use this widget to be sure you know of all the communities for which an SAB might strategize content, link building, brand building, real-world relationship building, social media marketing, and PPC.


Schema/JSON-LD Generators

Rather than list a single tool here, I’m going to take the advice of my friend, schema expert David Deering, who has taught me that no one tool is perfect. In David’s opinion, there isn’t currently a schema/JSON-LD generator that does it all, which is why he continues to build this type of markup manually. That being said, if you’re new to Schema, these generators will get you started:


For Citations

Moz Check Listing

I can say without bias that I know of no free tool that does a better job of giving you a lightning-fast overview of the health of a local business’ listings. On the phone with a new prospect? Just plug in the name and zip and see how complete and accurate the company’s citations are on the sources that matter most, including the major local business data aggregators (Acxiom, Factual, Infogroup, Localeze) plus key platforms like Google My Business, Facebook, Yelp, YP, and more.

Literally at a glance, you can tell if inconsistencies and duplicate listings are holding a business back. It can also be used for competitive analysis, defining whether a clean or messy citation set is impacting competitors. The value of the free Check Listing tool becomes most fully realized by signing up for the paid Moz Local product, which automates aggregator-level listing management even at an enterprise level with hundreds or thousands of listings, and offers options for review monitoring, ranking analysis, and more.

Whitespark’s Local Citation Finder (free version)

The free version of this cool tool from our friends at Whitespark will give you a sense of how the paid version can help you discover additional places, beyond the basics, where you might want to get listed. It also analyzes your competitors’ citations.


For Reviews

The Hoth’s Online Business Review Checker Tool

You’ll have to sign up, but this free tool gives you an overview report of a local business’ reviews on a variety of platforms. This is a smart thing to do for every incoming client, to gauge reputation strengths and weaknesses. The state of a company’s reviews indicates whether it has an offline problem that needs to be corrected at a real-world structural level, or if its core challenge is a lack of strategy for simply earning a competitive number of positive reviews.

Free Review Monitoring

Need to know when a new review comes in on a major or industry-specific review site? Signing up for this free tool will send you email alerts so that you can respond quickly. Watch the little video and pay attention to its statement that the majority of unhappy customers will consider visiting a business again if it quickly resolves a complaint. Good to know!

Review Handout Generator

Another freebie from Whitespark in partnership with Phil Rozek, this very simple resource lets you enter some business info and generate a printable handout your public-facing staff can give to customers. Active review management has become a must in even moderately competitive geo-industries. How nice to have a physical asset to offer your customers to get more of those reviews rolling in!

Google Review Link Generator

Google’s local product has gone through so many iterations that finding a link to point consumers to when requesting a GMB review has been foolishly difficult at times. Whitespark helps out again, at least for brick-and-mortar businesses, with this easy widget that lets you enter your business info and generate a shareable link. Unfortunately, SABs or home-based businesses with hidden addresses can’t use this tool, but for other business models, this widget works really well.


For social

Notify

Whenever your business gets mentioned on Facebook, YouTube, Twitter, Linkedin, Reddit, and a variety of other platforms, Notify uses Slack or HipChat to send you an alert. By being aware of important conversations taking place about your brand, and participating in them, your business can achieve an excellent status of responsiveness. Social media has become part of the customer service environment, so a tool like this comes in very handy.

Followerwonk

A free trial is available for this app which acts as serious analytics for Twitter. If Twitter is a favorite platform in your industry, definitely give this resource a spin. Understand the characteristics of your followers, find and connect with influencers, and use data to improve your outreach.

Character Count Online

I use this ultra-basic tool all of the time for three specific tasks. Some social platforms either have character limits and don’t always have counters, or (like Google Posts) truncate your social messaging so that only a limited snippet appear at the highest interface. Just plug in your text and see the character count.

And, of course, you’ll want a character counter to be sure your on-page title tags and meta descriptions read right in the SERPs.

My third use for this counter relates to content marketing. Most publications have character count parameters for the pieces they will accept. Here on the Moz Blog, we’re not into length limits, because we believe thorough coverage is the right coverage of important topics. But, when I’m invited to blog elsewhere, I have to rein myself in and be sure I haven’t galloped past that 800-character limit. If you’ve found that to be a problem, too, a character counter can keep you on-track as you write. Whoa, horsie!


So, what did I miss?

If you’re saying to yourself right now, “I can’t believe this totally awesome free local SEO tool I use every week isn’t included,” please share it with our community in the comments. One thing I know I’d love to find a free solution for would be a tool that does review sentiment analysis. Paid solutions exist for this, but I’ve yet to encounter a freebie.

My criteria for a great tool is that it makes work better, stronger, faster… or is that the intro to The Six Million Dollar Man? Well, Steve Austin had some amazing capabilities (and a cool 70s jogging suit, to boot!), and I’m hoping you’ll feel kitted up for success, too, with this list of free tools in the year ahead.

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

What to Do When a New Potential SEO Client Contacts You

Posted by dohertyjf

Editor’s note: We originally published a different article by mistake due to an oversight and a valuable lesson in the dangers of copy-paste; you can see it live here. We truly apologize for the error.


If you’re an agency owner or solo consultant, you’re probably constantly thinking about getting new clients. And we’re inundated in this industry with too much advice around new marketing funnels, new marketing ideas, and “one weird tricks to 10x your traffic overnight.”

But something we don’t talk about enough is what you do when you actually convert that person into a real contact on your site.

I’m not talking about “a lead” here, because that word is used widely in our space and has come to mean everything and nothing at the same time. A lead could be an email address and it could be a long-form submission telling you everything about their needs, as well as their budget and their birth city.

What I’m talking about here is a marketing qualified lead (MQL) that you are going to turn into a sales qualified lead (SQL) so that you can turn them into a business qualified lead (aka a new client). (Note: I just made up business qualified lead, so don’t go around talking about BQLs. Or do, but credit me!).

Over the last two years I’ve helped a lot of businesses connect with great marketing providers through my company Credo, and through that I’ve been able to watch how agencies and consultants alike pitch work.

I see all sorts of strategies done to try to close a lead into a client, such as:

  • Send an intake survey to try to vet the lead more;
  • Send them a Calendly link to get them to schedule a call as soon as possible;
  • Send an initial proposal after the first call and then refine it with the client on the phone;
  • Send tracked proposals using a tool like DocSend so you can follow up depending on whether they’ve viewed it or not.

There are many more I’ve seen as well. Some work well, others don’t. This post isn’t going to dig into the various tactics you can use, as you should be testing those yourself.

What I care about is that you develop a sales strategy that sets a strong base and that you can build from into the future.

I also have a unique view on our industry, because I get to see what kind of sales process actually closes potential clients into actual clients. While you may be doing something that you think works really well, there’s a great chance that I know a better way.

And today, I’m going to give you a view into what I know closes clients, and the sales process that I use to close a high percentage of projects who want to work with me into clients.


What to do when a client contacts you

The first rule of sales in a service business like a consulting agency is that the earlier you reply to a prospective client, the more likely you are to close them into an actual client.

Over the last couple of years, I’ve tried to educate businesses that they should speak with multiple agencies and get multiple proposals, to understand what each agency has to offer and be able to compare them in order to arrive at the right decision for their specific business.

And yet, time and time again I see the first agency to respond to be the one to close the project probably 70% of the time.

This can absolutely be a templated response, and tools like Gmail’s Canned Responses or templates within your CRM of choice can help. I personally use HubSpot’s and push form entries there via Zapier, but there are many different options out there; I’m sure you can find one that connects your form technology to your CRM.

In your response, you have to include these three points at minimum:

  1. Respond as quickly as possible and thank them for contacting you
  2. Acknowledge the project they say they’re interested in
  3. Schedule a time to chat on the phone as quickly as possible

As I said above, I’ve seen many agencies send an intake questionnaire that’s a page or two long before even getting on the phone with the potential client.

I advise against this simply because this slows down the process. Some clients that you would otherwise win will simply move on to another agency. You’re giving them work when really what you need to do is remove friction from their decision to choose you.

This initial contact is also not the place to tell them all of the brands you’ve helped and the results you’ve gotten. If they’re contacting you, they’re already interested. Don’t make them think.

You have one goal with your response: to get them to schedule a phone call with you.


What to learn on the first call

If you’ve followed my instructions above, you’re getting the client to schedule a call with you (when you’re available) as quickly as possible. Don’t forget to have them include their phone number, as well!

Schedule the call for 30 minutes so that you can:

  1. Get an understanding for their project, and
  2. Not invest too much time into them in case they’re not qualified enough.

As a side note, if you’re getting too many “leads” (may we all be so lucky) that are not qualified for your business and thus wasting you or your salesperson’s time, then you may want to look at adding some friction to your lead forms. More is not always better.

You should have an idea of who your best clients are and the kind of work they’ve hired you to do that you are best-in-class doing; you need to walk away from this first call at minimum knowing if they’re a good fit or not.

If they are a good fit, then you can move them forward in your sales process (usually a recap and another call).

You’ll also be able to use this process to qualify out the leads who on the surface seem to be a good fit because they were able and willing to successfully fill out your lead form, but when you dig deeper into their business and needs, you realize they’re not quite such a good fit. We’ll talk about this more in a minute.

On this initial phone call, you need to cover all of these points to determine whether you should pitch the work or not:

  1. What their business model is, so that you can understand if they’re profitable;
  2. The type of project they’re looking for, such as strategy or services or a combination thereof;
  3. Their internal team structure and their knowledge of the marketing channel they’re inquiring to you about;
  4. Whether the person you’re speaking with is the person who has final sign-off and budgetary control, or if they’ve been tasked with sourcing an agency but ultimately are not the decision maker;
  5. Their budget range;
  6. Their timetable for wanting to get started.

Thank them for their time and set their expectations about what you’ll do next and when they can expect to hear back from you.

Now your work really begins.


After the first call

Assuming the first call with your prospective client goes well, you’ll need a process to follow so that followups don’t fail and the process moves forward.

This part is important.

Right after the call, follow up with the person you spoke with via email to recap the call and reiterate your next steps.

First, thank them for their time. Regardless of whether or not you ultimately decide to pitch the project, you should be grateful that they decided to speak with you and not someone else.

Second, recap what you discussed on the call. I like to take notes with my CRM (I use HubSpot, as mentioned above) and then use those to write the recap. A CRM should integrate with your email system and allow you to email the prospect from directly within it so that you don’t have to move between your CRM and your email client.

Here’s a templated response that I use when replying to someone after our initial call:

Hi FNAME,

Thank you for the conversation today! I enjoyed learning more about your business and how we can potentially help.

As we discussed, COMPANY is looking for TYPE OF PROJECT. (recap the project here)

As I mentioned on the call, my next step is to spend some time reviewing your site and your project to determine if it is the right fit for me as well. I will follow up with you within 48 hours (NOTE: THIS CAN CHANGE IF YOU CHATTED ON FRIDAY, IN WHICH CASE SAY END OF DAY ON MONDAY) with my findings and where I think I can add value to your business. In the case that your project is not the right fit for me, I can suggest some other people you should speak with.

Thanks FNAME, and you will hear from me soon!

John

Now you can review their project and website metrics to see where you can add value, and if it’s a project that can be successful within the budget they have outlined for you.

Then, decide if you should pitch for the project or refer them elsewhere.


Deciding whether to pitch the work

Sales is all about determining who the right prospects are and are not, then optimizing your time to focus on the clients you want to sign — not on the ones that are a poor fit for your business.

Hopefully you know who your ideal customer is, in terms of budget but also the type of work they need (strategy, services, or some combination thereof) as well as the marketing channel(s). Once you know who your ideal customer is (and is not), you’ll have a much easier time determining whether or not you should pitch the work.

In my experience with seeing over a thousand projects introduced to marketing providers, the six factors mentioned in the “What to learn on the first call” section are the ones that reliably help you understand whether you should pitch the work or not.

Some of the factors to avoid are:

  1. Unrealistic expectations or timelines
  2. No or low budget
  3. No resources to get things done
  4. Their last four agencies haven’t worked out
  5. Going out of business “unless they get help”

I love that so many in the SEO industry are helpful and genuinely good people who want to help others, but if you start taking on clients that can’t pay you what you need to operate a profitable business or have had issues with many other agencies, then you’re doing yourself and your business a disservice.

If I had a dollar for every time I heard an agency say that they “pitched the work, but set the budget high” I’d be financially independent and retired to a mountain town in Switzerland by now.

Hear me loud and clear here:

You do not have to pitch every project that falls into your lap.

If the project doesn’t meet your minimum project budget, the type of client you can get outsized returns for, or is not within your core competency (your zone of genius), then you should not pitch the project.

Let me explain why.

If a client is below your minimum project threshold and you pitch them, you’ve wasted two people’s time. You’ve wasted your time by creating a proposal and potential project plan, and you’ve wasted their time because they took time out of their day to review something that they’ll never sign off on.

Second, if they negotiate back to try to get the budget lower, you’re going to spend your time to get a project that is smaller than what they ideally need and can afford. You’re literally spending time to make less money, when you could take that time to pitch and negotiate with someone who can easily afford your services.

Should you sign the project that is smaller than or right at your minimum while at the same time being at very top end of their budget, you can rest assured that this client will take up more time than they’re paying for because they feel pressure to make it work quickly. Unless you set expectations explicitly and are very good at saying no to requests for work that are outside of the scope of what they’re paying for, this project will quickly snowball and take up too much time, thus putting it in the red.

Don’t pitch a project that’s very likely to go into the red budget-wise. That is Business 101, and you will regret it. I promise.


Conclusion

I hope this post has been helpful to you in learning what to do when a new potential consulting client first contacts you or your agency.

First, speed is of the essence. While we want to believe that the best pitch will ultimately win the business, experience tells us that it is most often the first person to respond who actually gets to pitch and sign the business.

Second, get the potential client on the phone as quickly as possible. Don’t rely on email, as you can gain way more information on a 30-minute call than in a string of emails. People are busy and you don’t want to create more friction for them. Get them on the phone.

Third, you need to send a followup email within a few hours of the phone call where you thank them for their time, recap what you discussed, and set their expectations for what your next steps are and when they’ll hear from you again. Feel free to use my template and adjust it for your specific needs.

Fourth, decide if you want to pitch the project. Don’t pitch projects that are too small, outside your/your agency’s zone of genius, where what you have to offer is not their highest leverage option, or where they’re not set up internally to make the project successful. Your project will not succeed if any of these are true.

I am also writing an ebook, hopefully out in Q1 2018, about everything I’ve learned seeing over 1,100 projects come through Credo. If you’re interested to hear when it launches, sign up.

I’d love to hear your comments below and interact with you around better sales for digital marketing consulting work!

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

How to Get New Clients at Every Stage of Your Business

Posted by dohertyjf

I remember when I first went out on my own to build my business. Because I planned to bootstrap the product into existence, I needed to pick up some consulting work to cover my own bills before I felt comfortable taking time to build my product.

I had a sizable group of peers that I contacted to let them know that I was no longer with my last company and was looking to bring on a few new clients. Within a week, I had to stop taking introductions because I was so busy! If you’re a brand-new freelance consultant, this post has some goodies for you.

I have other friends who are purposefully freelance consultants with no current plans to scale beyond it. In fact, they’ve resisted these opportunities because they enjoy what they’re doing so much, and are able to charge a premium for it. This post will help you out.

Some of my friends are at a different stage. They’ve worked for themselves for 3–4 years or longer now and are growing an agency beyond themselves and their own skillset. Along the way, of course, they’re figuring out the challenges of growing headcount and types/sizes of clients while they themselves learn to level up as a CEO, as a manager, and as a sales executive, since agency founders are often the salespeople for the first few years of their company’s existence. The client acquisition strategies change. This post is also for you.

And finally, agencies often decide that they are ready to expand beyond their main core offering and offer tangential services that they are either being asked for actively or where they perceive an opportunity exists. Since they already have a functional and maybe even (wildly) profitable services business, how can they justify taking time away from that to build out a new service offering? The mindset and strategies change once again. We’ll get into some of those.

Building a service-based business is hard

Over the last two years, I’ve worked with over 150 agencies and have seen over 800 businesses (it’s probably closer to 1,000 at this point) looking to hire an agency or consultant. I’ve also worked in-house, as a solo consultant, and for a quickly growing boutique digital agency.

After the experiences I’ve had seeing everyone — from new scared-out-of-their-wits solo consultants all the way to long-established agencies looking to grow their practice — I decided to take a step back and reflect on the strategies I’ve seen both work and not work for consulting entities at different stages of growth.

That’s what we’ll cover today. If you’re a new consultant, an agency looking to level up the size of your accounts, or an agency looking to move into new service offerings, you’ll find something in this post for you.

Along the way, you’ll hear from consultants and agency owners at different stages of their business and what they did to get to where they are currently. After all, war stories are way more fun than “here are x steps you can follow to also be amazing” anecdotes.


New consultants

Tell me if you’ve seen this happen before: a friend is tired of their job, gets laid off, or otherwise finds themselves unemployed. They decide that they’re going to give freelance consulting a go.

Three months later, they’ve taken a new job at a new agency and are repeating the cycle they went through before.

Screenshot 2017-06-28 10.38.26.png

Sound familiar? If you’re in the digital marketing consulting world, you likely know at least a few, if not closer to a dozen people where this has held true.

I’m not going to say that everyone goes back to traditional employment because they’re having a difficult time getting new clients, but this is far and away the largest reason I see. They get a few months in, they have too few clients paying them too little, and so they panic and go take a job doing what is comfortable. They’ll repeat the cycle in a few years again.

I get it. The beginning of working for yourself can be terrifying. I’ve been there. Saw a therapist, got the t-shirt, am I right?

What if I told you that you could avoid this if you really want to? That you could use some proven techniques to get new clients that pay you what you’re worth?

Overcoming common “new consultant” fears with strategic thinking

You’ll hear entrepreneurs who have built and sold their companies (sometimes multiple times) tell you to take a “burn the ships” approach, where you set off and don’t give yourself a time limit or an out if you can’t make it work.

The problem with this is that it’s a fallacy brought about by survivorship bias — defined as “the logical error of concentrating on the people or things that made it past some selection process and overlooking those that did not, typically because of their lack of visibility.” Often these entrepreneurs look back and talk about how they could have done it, or how they did it for their second or third business once they’d already made quite a bit of money.

Quite simply, if you want to set yourself up for success, you should already have replaced (or have a clear path to replacing) your income from your day job before you even go out on your own.

You can do this by picking up freelance work on the side from your day job. Get one or two clients that pay you every month and learn how to manage those. Learn what it takes to retain these clients and even grow the accounts.

Next, figure out the minimum amount of money you need to make every month while only working the number of hours you want to work before you take the leap. If you have two clients, you can probably get two more pretty easily. If you spend 10 hours a week on these two clients and only want to bill 30 hours per week (which is actually quite a lot), then you know you can bring on four more clients at the same level (and fewer clients if they pay you more) and have the lifestyle and income you want.

It’s simple math.

The “new consultant” sales mindset

Clients come to solo consultants instead of agencies for a very specific reason. They want direct access to your specific brain and to be able to speak with the person actually doing the work. In fact, I’ve seen many companies come through Credo who need multiple services (not just strategy) across organic and paid, but they don’t want an account manager setup like they’ve had before with an agency.

This, plus your experience, is your competitive moat. During the initial discovery call with every potential client, don’t forget that you’re interviewing them as much as they’re interviewing you. You need to learn:

  • What they are specifically looking to accomplish through retaining someone’s services;
  • What their expectations are for how quickly they will see this;
  • If they have resources to get done what you recommend, or if you have time to implement what they need;
  • Whether they’re willing to pay you what you are worth.

Assuming all of these check out, then in my opinion, you’re good to move forward with the proposal process.

A quick word on pricing

If you’ve never worked for an agency before, you should ask agency friends or other freelance friends what they charge per hour, then use that as a benchmark. If you want to raise your rates, then do it slowly with new clients until you hit a ceiling. Now you know your price ceiling for the current services (whether strategy, implementation, or both) you offer.

New client acquisition channels

Now that we have the common fears identified and you’re armed with a better sales mindset, let’s explore the strategies you should leverage first to build your consulting practice to a base where it sustains your lifestyle and you’re able to remove the stress of starting from the equation and eventually think about growth.

The strategies I always counsel brand new solo consultants to use are:

  • Referrals – Ask your circle of professional peers if they know anyone looking for what you have to offer;
  • Referrals – Ask your friends and family if they know anyone that might need what you’re offering;
  • Agency white label – Approach agencies in your area to see if they need help on a contract basis with their clients;
  • Teaching – This is a longer-term play, but a great way to get clients in the long run is to teach others how to do what you do. I’ve seen it hold true that if you teach people how to do what you do, they’ll want to hire you to do it for them.

These are the easiest and most direct ways to get introductions to potential clients who are highly likely to close into clients.

Long-term this does not scale, but it can get you to the point of covering your expenses, allowing you to breathe a little bit and invest for the future. And if you’re smart about it and haven’t signed yourself up for 60+ hours per week of billed work, you can have a great life balance.

To give some real-world examples, I reached out to two of my friends who became solo consultants in 2013/2014.

First is Tom Critchlow, who went solo in late 2014 after two years at Google New York. When asked how he got his first consulting clients, Tom said that his first leads came from direct referrals from a friend:

“Since that first lead I’ve gotten about 80% of my clients through referrals from my direct network,” he shared. “I’d definitely emphasize the importance of a strong network and ensuring that you’re communicating with your network often to keep them up-to-date with what work you’re doing.”

Next I chatted with Michael King, who has since built his agency iPullRank into an industry powerhouse, and asked him how he got his first clients when he left the NYC agencies he worked for. To get his first, he shared that thought leadership played a huge role:

“My first two clients came through two different methods of thought leadership. One came via a post I’d written for Moz about content strategy, and the other came from a panel I spoke on. Overnight, I went from 0 to 10.5K MRR.”


Solo consultants happy staying solo

If this is you, then congratulations. In my mind, you’re finding nirvana in a lot of ways.

Solo consultants with more years of direct consulting experience are able to charge good hourly rates and monthly minimums from clients, according to my data.

solo consultant pricing.png

Once a consultant has survived the initial push to get new clients, the journey is far from over. In fact, many solo consultants have come up against this and gone through droughts where they were between projects.

This brings up the question: How can solo consultants, who can only realistically bring on a limited number of clients before they become too numerous, keep a strong potential client pipeline?

Define your niche and build processes

The answer is usually to tightly define your niche and then, depending on your niche, to build processes to deliver high quality work.

High-touch strategic consulting does not scale. It also does not have to scale if you charge a high hourly rate ($300/hr for strategic consulting that drives large revenue increases is not crazy, and may even be too low), in which case you can work with just a few clients and still create a great income for yourself.

When you’ve defined your niche, whether affiliate marketing driven by content or local SEO for realtors, then you put together the strategy to reach them.

This should go without saying, but if you’re asking how to define your niche, then you aren’t ready to be a highly paid solo consultant yet. Hone your craft and discover who you love to do work for, then go serve those customers on your own.

Once your niche is defined, you can focus on that group.

Targeting your ideal audience

As mentioned above, the toughest part of being and staying a solo consultant is managing your workload and saying “no” or “not yet” to potential clients, while at the same time protecting your downside should a client decide to stop your services for any reason, whether your fault or because of internal actions.

The best solo consultants that I know, who also have a strong pipeline of potential clients, have built this through:

  1. Content. They produce content related to their target market’s problems and thus become a thought leader in that niche. This will often lead to recurring columns in industry publications.
  2. A strong referral network. They know the who’s who of their niche and are their go-to when someone needs the consultant’s specific skillset.
  3. Speaking. Getting a one-off or set of speaking engagements in front of your target audience often directly drives potential clients and cements you as an expert in their minds.

The goal is to build your own name as an expert so that you consistently have potential customers approaching you to see if you can work with them, while also knowing your limits and when you may next have available time.

The goal isn’t to magically be able to get new inquiries when you need them (though this may happen if you’ve built this system), but to be able to go back to a group of people who have already inquired about your services and tell them that you have some availability. A pro move is also to ask if they know anyone who may need your services, as well.

Creating processes

Not every consultant desires working with large clients who each pay the equivalent of a full-time salary. Some consultants prefer working with smaller clients, mostly small or local businesses, because of the unique challenges that these clients face.

In this case, the challenge is to work out how you scale quantity without sacrificing quality or client retention. There are many ways to do this:

  • Find an agency or group of consultants you trust that you can outsource certain parts of the project to;
  • Leverage technologies like HubSpot, Moz, or others that allow you to automate a lot of the work;
  • Use tools like HubSpot, Calendly, UberConference, or others to help scale scheduling and admin parts of the business;
  • Use virtual assistants, bookkeeping services like Bench, and payroll services like Gusto to alleviate a lot of the business operations so you have more time to work for clients.

As Francois Marcil of Ehook.co shared:

When you have over 10 clients, the time spent attending meetings is the biggest obstacle to serving all your clients well. For this reason, I reserve 2 days of the week for meetings and 3 days for work. The rule is strict, and I inform my clients from the start.”

When a solo consultant sets up these processes, it not only makes their life a lot easier and their clients happier (which leads to better retention, which leads to a healthier business), but it also sets them up for success should they decide later that they want to start an agency. In this case, their processes of both acquiring and managing new clients will let them generate the cash flow needed to make the leap to employing someone full time.


Agencies leveling up

Some business owners don’t feel the need to constantly push and grow their business. They’re bootstrapped, their business affords them and their employees a great lifestyle, and they have no desire to take on more responsibility with their business. If this is you, then I’m a bit envious and encourage you to enjoy it.

If you’re anything like me, though, you’re never happy with maintaining. You always want to be growing, to be learning, to push yourself and your business to see what it’s capable of. If you’re on this course, then keep reading.

Your strategies have to change a bit when you go from being a solo consultant to growing your agency. A lot of your processes are going to break or need tweaking as you grow the number of people working on accounts. Your challenge now becomes managing the growth of your headcount while maintaining quality and bringing in great new clients at the same time.

This is likely way too much for one person to handle, so at some point you’ll be forced to decide what you are great at (and love doing) that is also instrumental to the business’s success. Then hire out for the rest.

Let’s focus on the sales part, of course.

At the beginning of your journey as a brand-new consultant, you were likely heavily dependent on one-off referrals from family and friends. But referrals don’t really scale.

As you’re looking to grow your business quickly, your channels have likely shifted to:

  • Speaking. If you have a dynamic founder who is a keynote-level (or heading in that direction) speaker, this can be great lead generation;
  • Strategic partnerships with investors or other agencies;
  • Your own search traffic and thought leadership on your own website;
  • Your own advertising of your services online.

You’re facing the unique challenge of increasing the quantity of potential clients contacting you while not sacrificing quality. While difficult, this is absolutely possible. You can grow your revenue by:

  1. Targeting new clients who have similar traits to your existing ideal clients;
  2. Growing accounts by upselling your existing clients to other services you offer that they need;
  3. Defining a specific niche or type of company where you get outsized returns, and then target them specifically through content, speaking, education, or both.

Sales changes as you grow. You’re looking for long-term sustainable clients as it is four to ten times cheaper to retain and grow your current clients than to get new clients (source). If you’re investing in landing new clients, you should not also have to worry about retaining your current clients. If you are, then you are simply refilling a leaky bucket and you will not grow.

Michael King of iPullRank is no stranger to the challenges that agency founders face as they grow, but he’s successfully transitioned from solo consultant to now managing seven figures in agency income. So what does he do differently?

“The difference is really that it’s far more dire,” he shared. “The maintenance of payroll becomes the battery in your back to have to just figure it out. Whereas when you’re by yourself and you have a low month or you lose a client, it’s not that big of a deal.”

Johnathan Dane of KlientBoost credits lessons he’s learned about sales along the way in growing KlientBoost from himself to $4M in revenue in just a few years:

“We’ve been very fortunate to have 99% of our sales come from our content, and when that happens, our sales cycle is drastically reduced because the potential client already likes us and has found value from what we’ve given them,” he said. “So even 2.5 years in, I still handle the inbound sales — which I know isn’t scalable — but you gotta allow yourself to still have some fun.”

I should also note that at this point, you should have someone dedicated to sales and onboarding new clients full-time. This can be filled by the founder if the founder is stellar at sales, but most often I see this role being given to a dedicated sales executive who hopefully also has marketing experience, or has proven their aptitude for learning and applying it so they sell the right work.


Agencies moving into new service offerings

At some point, you may max out your growth in your current niche and with your current offerings. At the same time, you want to continue growing but don’t have the option of increasing client budgets. Or, maybe a new platform emerges (think: Snapchat) that has the opportunity to be big and you want to be an early mover in helping your clients get exposure.

But moving into new niches is hard when you’ve established yourself in another service offering and that’s how you’re known. Every agency has a primary service offering, so how do you move into new niches?

There are two main ways:

  1. Think of this new service offering as a startup in and of itself. It is responsible for its own profit and loss (P&L), as well as landing its own new clients;
  2. Upsell your current clients into this new offering as well.

This is hard. Brandon Doyle of Wallaroo Media, who went from being a generic SEO agency to leading the way in travel marketing and Snapchat from their offices in Provo, Utah, knows this firsthand:

With a background in SEO, we strongly believed in its ability as a channel,” he shared. “We utilized SEO and evergreen content to carve out a name for ourselves both in the travel space, and more recently as a leader in Snapchat-related content, strategies, and news. The latter paid off, as we were just recently named an official Snapchat Agency Partner!”

Will Critchlow, CEO of digital marketing agency Distilled (full disclosure: I used to work for Distilled), also knows a thing or two about moving into an adjacent vertical. The agency recently become recognized for not only SEO, but creative content and outreach services, too:

“All our moves have come from the passion of the team,” shared Will. “Team members saw an opportunity, started doing part of the solution, and pitched the rest.”

Finally, your marketing will change as you seek traction in this new vertical. The topics you write about, the people you reference, the outreach you do, and the places you choose to interact will necessarily change.

This is specifically why I recommend tasking someone specifically with building out this new area. At Wallaroo, this was Brandon. At Distilled, this was Mark Johnstone who was previously an SEO consultant who had an interest in big creative content and Tom Anthony with an interest in technical A/B testing for SEO.


Conclusion

Consistently generating new potential projects at every cycle of your business’s growth is the best skill you can learn as a services business owner.

Leave a comment about the channels you’ve found to be the most effective!

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!

Why Google AdWords’ Keyword Volume Numbers Are Wildly Unreliable – Whiteboard Friday

Posted by randfish

Many of us rely on the search volume numbers Google AdWords provides, but those numbers ought to be consumed with a hearty helping of skepticism. Broad and unusable volume ranges, misalignment with other Google tools, and conflating similar yet intrinsically distinct keywords — these are just a few of the serious issues that make relying on AdWords search volume data alone so dangerous. In this edition of Whiteboard Friday, we discuss those issues in depth and offer a few alternatives for more accurate volume data.

http://ift.tt/2Ft0oRw

http://ift.tt/1SsY8tZ

why it's insane to rely on Google adwords' keyword volume numbers

Click on the whiteboard image above to open a high-resolution version in a new tab!

Video Transcription

Howdy, Moz fans. Welcome to another edition of Whiteboard Friday. This week we’re going to chat about Google AdWords’ keyword data and why it is absolutely insane as an SEO or as a content marketer or a content creator to rely on this.

Look, as a paid search person, you don’t have a whole lot of choice, right? Google and Facebook combine to form the duopoly of advertising on the internet. But as an organic marketer, as a content marketer or as someone doing SEO, you need to do something fundamentally different than what paid search folks are doing. Paid search folks are basically trying to figure out when will Google show my ad for a keyword that might create the right kind of demand that will drive visitors to my site who will then convert?

But as an SEO, you’re often driving traffic so that you can do all sorts of other things. The same with content marketers. You’re driving traffic for multitudes of reasons that aren’t directly or necessarily directly connected to a conversion, at least certainly not right in that visit. So there are lots reasons why you might want to target different types of keywords and why AdWords data will steer you wrong.

1. AdWords’ “range” is so broad, it’s nearly useless

First up, AdWords shows you this volume range, and they show you this competition score. Many SEOs I know, even really smart folks just I think haven’t processed that AdWords could be misleading them in this facet.

So let’s talk about what happened here. I searched for types of lighting and lighting design, and Google AdWords came back with some suggestions. This is in the keyword planner section of the tool. So “types of lighting,” “lighting design”, and “lighting consultant,” we’ll stick with those three keywords for a little bit.

I can see here that, all right, average monthly searches, well, these volume ranges are really unhelpful. 10k to 100k, that’s just way too giant. Even 1k to 10k, way too big of a range. And competition, low, low, low. So this is only true for the quantity of advertisers. That’s really the only thing that you’re seeing here. If there are many, many people bidding on these keywords in AdWords, these will be high.

But as an example, for “types of light,” there’s virtually no one bidding, but for “lighting consultant,” there are quite a few people bidding. So I don’t understand why these are both low competition. There’s not enough granularity here, or Google is just not showing me accurate data. It’s very confusing.

By the way, “types of light,” though it has no PPC ads right now in Google’s results, this is incredibly difficult to rank for in the SEO results. I think I looked at the keyword difficulty score. It’s in the 60s, maybe even low 70s, because there’s a bunch of powerful sites. There’s a featured snippet up top. The domains that are ranking are doing really well. So it’s going to be very hard to rank for this, and yet competition low, it’s just not telling you the right thing. That’s not telling you the right story, and so you’re getting misled on both competition and monthly searches.

2. AdWords doesn’t line up to reality, or even Google Trends!

Worse, number two, AdWords doesn’t line up to reality with itself. I’ll show you what I mean.

So let’s go over to Google Trends. Great tool, by the way. I’m going to talk about that in a second. But I plugged in “lighting design,” “lighting consultant,” and “types of lighting.” I get the nice chart that shows me seasonality. But over on the left, it also shows average keyword volume compared to each other — 86 for “lighting design,” 2 for “lighting consultant,” and 12 for “types of lighting.” Now, you tell me how it is that this can be 43 times as big as this one and this can be 6 times as big as that one, and yet these are all correct.

The math only works in some very, very tiny amounts of circumstances, like, okay, maybe if this is 1,000 and this is 12,000, which technically puts it in the 10k, and this is 86,000 — well, no wait, that doesn’t quite work — 43,000, okay, now we made it work. But you change this to 2,000 or 3,000, the numbers don’t add up. Worse, it gets worse, of course it does. When AdWords gets more specific with the performance data, things just get so crazy weird that nothing lines up.

So what I did is I created ad groups, because in AdWords in order to get more granular monthly search data, you have to actually create ad groups and then go review those. This is in the review section of my ad group creation. I created ad groups with only a single keyword so that I could get the most accurate volume data I could, and then I maximized out my bid until I wasn’t getting any more impressions by bidding any higher.

Well, whether that truly accounts for all searches or not, hard to say. But here’s the impression count — 2,500 a day, 330 a day, 4 a day. So 4 a day times 30, gosh, that sounds like 120 to me. That doesn’t sound like it’s in the 1,000 to 10,000 range. I don’t think this could possibly be right. It just doesn’t make any sense.

What’s happening? Oh, actually, this is “types of lighting.” Google clearly knows that there are way more searches for this. There’s a ton more searches for this. Why is the impression so low? The impressions are so low because Google will rarely ever show an ad for that keyword, which is why when we were talking, above here, about competition, I didn’t see an ad for that keyword. So again, extremely misleading.

If you’re taking data from AdWords and you’re trying to apply it to your SEO campaigns, your organic campaigns, your content marketing campaigns, you are being misled and led astray. If you see numbers like this that are coming straight from AdWords, “Oh, we looked at the AdWords impression,” know that these can be dead f’ing wrong, totally misleading, and throw your campaigns off.

You might choose not to invest in content around types of lighting, when in fact that could be an incredibly wonderful lead source. It could be the exact right keyword for you. It is getting way more search volume. We can see it right here. We can see it in Google Trends, which is showing us some real data, and we can back that up with our own clickstream data that we get here at Moz.

3. AdWords conflates and combines keywords that don’t share search intent or volume

Number three, another problem, Google conflates keywords. So when I do searches and I start adding keywords to a list, unless I’m very careful and I type them in manually and I’m only using the exact ones, Google will take all three of these, “types of lights,” “types of light” (singular light), and “types of lighting” and conflate them all, which is insane. It is maddening.

Why is it maddening? Because “types of light,” in my opinion, is a physics-related search. You can see many of the results, they’ll be from Energy.gov or whatever, and they’ll show you the different types of wavelengths and light ranges on the visible spectrum. “Types of lights” will show you what? It will show you types of lights that you could put in your home or office. “Types of lighting” will show you lighting design stuff, the things that a lighting consultant might be interested in. So three different, very different, types of results with three different search intents all conflated in AdWords, killing me.

4. AdWords will hide relevant keyword suggestions if they don’t believe there’s a strong commercial intent

Number four, not only this, a lot of times when you do searches inside AdWords, they will hide the suggestions that you want the most. So when I performed my searches for “lighting design,” Google never showed me — I couldn’t find it anywhere in the search results, even with the export of a thousand keywords — “types of lights” or “types of lighting.”

Why? I think it’s the same reason down here, because Google doesn’t believe that those are commercial intent search queries. Well, AdWords doesn’t believe they’re commercial intent search queries. So they don’t want to show them to AdWords customers because then they might bid on them, and Google will (a) rarely show those, and (b) they’ll get a poor return on that spend. What happens to advertisers? They don’t blame themselves for choosing faulty keywords. They blame Google for giving them bad traffic, and so Google knocks these out.

So if you are doing SEO or you’re doing content marketing and you’re trying to find these targets, AdWords is a terrible suggestion engine as well. As a result, my advice is going to be rely on different tools.

Instead:

There are a few that I’ve got here. I’m obviously a big fan of Moz’s Keyword Explorer, having been one of the designers of that product. Ahrefs came out with a near clone product that’s actually very, very good. SEMrush is also a quality product. I like their suggestions a little bit more, although they do use AdWords keyword data. So the volume data might be misleading again there. I’d be cautious about using that.

Google Trends, I actually really like Google Trends. I’m not sure why Google is choosing to give out such accurate data here, but from what we’ve seen, it looks really comparatively good. Challenge being if you do these searches in Google Trends, make sure you select the right type, the search term, not the list or the topic. Topics and lists inside Google Trends will aggregate, just like this will, a bunch of different keywords into one thing.

Then if you want to get truly, truly accurate, you can go ahead and run a sample AdWords campaign, the challenge with that being if Google chooses not to show your ad, you won’t know how many impressions you potentially missed out on, and that can be frustrating too.

So AdWords today, using PPC as an SEO tool, a content marketing tool is a little bit of a black box. I would really recommend against it. As long as you know what you’re doing and you want to find some inspiration there, fine. But otherwise, I’d rely on some of these other tools. Some of them are free, some of them are paid. All of them are better than AdWords.

All right, everyone. Look forward to your comments and we’ll see you again next week for another edition of Whiteboard Friday. Take care.

Video transcription by Speechpad.com

Sign up for The Moz Top 10, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don’t have time to hunt down but want to read!