Skip to content

How to Optimize Mobile Search for Voice, Barcodes and Images

Traditional tactics for search engine optimization will fade into a mobile-first world. The traditional behavior of typing key phrases in a search box is replaced by searches for voices, barcodes, and images.

Mobile searches have already overshadowed the office. Dark and long-tail searches will become more and more important. Think of a consumer – a cell phone and a wallet in hand – holding the product of a competitor. With a quick search by barcode or search for product images, she can search for better alternatives.

You can not type long-tail searches on mobile devices. But this difficulty also presents opportunities. In this post, I will discuss how to optimize mobile searches for voice, barcodes and images.

Voice Research

In December, Google's John Mueller asked for feedback on a potential new feature in Search Console to label voice searchers separately from the desktop, image, and mobile. It was a clue that we might soon have access to this feature.

So far, here is a solution for detecting voice searches that I've hacked with Google Data Studio.

The idea is that our word choices are usually different when we tap compared to when we speak. When we type, we normally use as few words as possible. We use many more words when we speak.

To detect voice searches, I've created a Google Data Studio report that you can clone and update. It lists keyword phrases that may be voice searches that your site displays in Google. (In "Using Google Data Studio for SEO", I explained how to create a report like this from scratch.)

This report lists keyword phrases that may be voice searches for which your site is visible in Google.

Let me explain. After using the Google Search Console connection in Data Studio, I dragged and dropped existing fields: Query, Clicks, Impressions, and Average Position . But, to identify long keyword phrases from mobile devices, I've created a new field, "Number of Words", and two filters, one for a minimum number of words, and another for Filter only mobile searches

<img class="wp-image-150618 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_64_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" Create a new field, "Number of words" and two filters, one for a minimum number of words, and another to filter only mobile searches. "Width =" 1661 "height =" 1288 "/>

Create a new field," Number of Words ", and two filters, one for a minimum number of words, and another to filter only mobile searches.

See also  There may be gold at home Podcasts Thar

This is the code for the Number of words field.

 LENGTH (REGEXP_REPLACE (Query, "[^tnfr ]", "")) + 1 

To count words in search phrases, use this hint.

 REGEXP_REPLACE (Query, "[^tnfr ]", "") 

We eliminate all words and leave only spaces. Then we count spaces with LENGTH.

If you try to count words with spaces, you would be a short word. That's why we add 1 to the end.

<img class="wp-image-150619 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_624_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" Filter the list to include only sentences on a number of words. "Width =" 1670 "height =" 1295 "/>

Filter the list to include only the phrases for a number of words only.

We now want to filter the list to include only long sentences. The number of words differs among the websites. In the case of this example site, I found seven significant words. Again, my premise is that it's hard to type such long sentences in a mobile device. So, I guess long phrases of mobile search are spoken.

In addition, the sentences are for the most part questions and most of the time complete sentences, which also indicates that they are spoken.

The final filter will ensure that we see long sentences only from mobile devices. If necessary, we could also include searches on tablets.

<img class="wp-image-150620 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_314_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" Filter the list for mobile devices only. "Width =" 2107 "height =" 1291 "/>

Filter the list for mobile devices only.

After these customization steps, you should have a report indicating the likely voice searches for which your site ranks on mobile, and whether these searches are generating traffic.

<img class="wp-image-150621 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_891_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" After personalization, the report should indicate the likely voice searches for which your site ranks and whether these searches generate traffic. Surprisingly, in this example, top-ranked keywords had a low number of clicks. "Width =" 1502 "height =" 1128 "/>

After customization, the report should show the likely voice searches your site is positioned in. Surprisingly, in this example, the highest-ranked keywords were a small number of clicks.

When I finalized the report (for an ecommerce client), I was surprised to find that well-ordered voice search keywords with correct impressions did not have any clicks. But, once I checked, it made sense. We did not write content or optimizations for these keywords. This is a huge missed opportunity for most retailers.

This report should also provide content ideas that have an application and for which your site is already classified.

See also  E-commerce SMEs Can Calm Social Media Complaints

As an aside, another interesting technique for attracting voice seekers is to write Actions for Google Assistant, instead of traditional content pages. These are applications to submit to Google. They usually require coding. In my next article, I will explain how to write a simple quiz application without code to provide personalized answers.

Search by barcode

Long-tail searches are not necessarily long. An example is people looking for SKUs, manufacturer numbers and similar product identifiers.

Again, it's hard to grab references in a mobile device. But it is easy to scan the barcode of a product.

Users of the Chrome app on an iPhone can tap and hold the Chrome icon to search for a barcode. For this example, I scanned the bar code of a book, which is an ISBN. It's simple and practical.

<img class="wp-image-150622 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_309_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" The Google Chrome app can scan a barcode to perform a search of the ISBN. "Width =" 800 "height =" 578 ​​"/>

The Google Chrome app can scan a barcode to perform a search for the ISBN.

Now, let's adapt the voice search techniques, above, to see if people are coming to your site from their phone using product identifier searches. The first step is to review your product numbers and find a regular expression that represents them.

For example, REI, the outdoor retailer, uses a six-digit product number. Thus, for REI, we would use " d {6}" to match exactly six numbers. If the identifiers start, say, with 1 to 5, we would use "[1-5] d {5}" instead. If your identifier uses letters and more or fewer numbers, you will need to adapt the regular expression. The hyphens are not likely to appear in search phrases, according to my experience.

<img class="wp-image-150623 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_385_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" REI uses a six-digit product identifier. "Width =" 2512 "height =" 1388 "/>

REI uses a six-digit product identifier.

Instead of creating a new field and a filter, as we did with Word Count, above, we can create the filter directly. For the example site below, the SKUs have exactly five numbers. I've removed the mobile filter to be able to compare the desktop and mobile behavior with a pull-down.

<img class="wp-image-150624 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061375_253_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" In Google Data Studio, you can create a filter directly, in this case for SKUs with exactly five digits. "Width =" 2556 "height =" 1410 "/>

With Google Data Studio, you can create a filter directly, in this case for SKUs with exactly five digits.

See also  SEO: 7 ways to start an ecommerce blog

This report generated a number of desk searches for SKU numbers, but only a handful of mobiles. This is probably due to the fact that buyers are not familiar with the barcode analysis tool for the Chrome app, or that they are using the Amazon app instead.

<img class="wp-image-150625 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061376_482_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" There was a decent number of SKU searches on the desktop, but very little on mobile. "Width =" 2546 "height =" 1402 "/>

There was a decent number of desktop SKU searches, but very little on mobile.

If you find a decent number of SKU researchers, be sure to update the titles of your product pages to include them if you do not already do so. You can find a report to clone with this feature here.

Note that if your product identifiers could be confused with other identifiers, such as postcodes, they would not perform well in Google search because they would compete with irrelevant pages.

Reverse Image Search

Consumers are probably landing on your online store looking for images on desktops. Mobile researchers can do this too, without typing, using a Google feature called reverse image search.

Imagine a potential customer viewing a wallet on your mobile site in Google Chrome. Buyers can support and maintain the product image to perform an image search. When they do this, Google automatically fills in the image and description of the product, to search for other sites. There is no need to type.

<img class="wp-image-150626 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061376_719_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" Using Google Chrome on a smartphone, buyers can press and hold the product image to search for an image. "Google then automatically fills the image and description of the product, to search for other sites." Width = "800" height = "578" />

Google Chrome on a smartphone, buyers can press and hold the product image to perform a search for images Google then automatically fills the page. image and product description, to search for other sites.

Unfortunately, connecting Google Data Studio to Google Search Console does not provide image search data. However, we can use the new Google Search Console performance report to get the information we need.

We can filter mobile image searches by selecting the type of image search, and also filter by Mobile Device. This would list the searches for moving images. We can approximate reverse image searches by filtering searches with very few search impressions, mostly a search.

<img class="wp-image-150627 size-full" src="https://businessdigit.com/wp-content/uploads/2018/04/1524061376_1_how-to-optimize-mobile-search-for-voice-barcodes-and-images.png" alt=" Filter mobile image searches by selecting the type of image search, and also filter by Mobile Device. Rough search for inverted images by filtering for those who have very few search impressions, mainly one. "Width =" 2550 "height =" 1410 "/>

Filter mobile image searches by selecting the type of image search, and filter by Mobile Device Approximate search for reversed images filtering those with very few search impressions, mainly one.

Focus on optimization opportunities in which you search for product images without clicks. Make sure all images in your main product have an alt text with the product name. Also make sure the names of the image files are relevant, not random letters and numbers.

http://platform.twitter.com/widgets.js