Wednesday 21 February 2018

Google now shows "More Results" on Mobile Search Result Page

Changes in search results page layout were never so frequent. Every other day we see something or the other new happening on the search results page layout. This morning I observed "More Results" button at the end of organic listings on mobile search, which in turn loaded next set of organic results.

I reckon Google started experimenting this last year in the US. The look and feel for the layout and "More Results" button was different then. Also the search results on such pages were probably limited to four instead of regular ten. This time I can see full list of regular search results along with "More Results" button. Maybe this is slowly rolling out in India now. Some of you might have already seen this earlier but this isn't uniform across all users.

I ran a query for "home loan" on Google mobile search and found this button at the bottom just after "Related Searches". I can see that for various other search queries.



Is Google getting rid of it's standard Pagination method of showing more results and taking a cue from Infinite Scrolling by adding "More Results" button at the end of search results? 

Excited to see so many changes being made in the search layout but I wish this could be less frequent. Talking about this particular change, this is definitely more user friendly where you can view more results at the same time check the earlier results by just scrolling up.

Sunday 4 February 2018

'Google chose different canonical than user' from New Search Console's Index Coverage proves How Smart is Google!

Index Coverage from Google's New Search Console

We all have got access to the much awaited New Search Console (available at https://search.google.com/search-console). 


While the new features are in the development stage, we already have access to couple of great ones. The first one is of course the Performance section that provides data for 16 months! 


And the second one is Index Coverage. 

Once you open the Index Coverage report you would find loads of details that includes the following:

Errors - Pages that couldn't be indexed for some reasons.

Valid with Warnings - Pages that are indexed but with some issues and Google isn't sure if they are intentional at your part. Example - Tag pages on your blog. 
https://www.example.com/blog/tag/seeds/

Valid - Pages that are indexed without any issues.

Excluded - Pages that were intentionally not indexed.

Now under Excluded you would see various reasons due to which Google didn't index some pages of your site. 


The reason that interests me the most is 'Google chose different canonical than user'.

Google chose different Canonical than user

I tried to find some excluded URLs under this reason and was amused to know how smart Google is. Will try to present my learning with a simplified example here:-

Assume I have an ecommerce site https://www.example.com with a sub-category page https://www.example.com/seeds/fruit-seeds.html

Under this category I have a lot of products that I serve using Pagination. Let's assume 20 products on each page and following is the URL structure:

https://www.example.com/seeds/fruit-seeds.html
https://www.example.com/seeds/fruit-seeds.html?p=2
https://www.example.com/seeds/fruit-seeds.html?p=3
https://www.example.com/seeds/fruit-seeds.html?p=4


I have perfectly set up the Pagination with the required rel next/prev and rel canonical tags. (Refer to Glenn Gabe's excellent article on how to set up the Pagination properly.)

All these pages present unique products and hence I have implemented self-referencing canonical tags on these pages rather than pages from p=2 to p=4 having a canonical tag that points to the main page /fruit-seeds.html

Now just imagine somewhere down the line, I am left with just 15 products. 
That means the main page https://www.example.com/seeds/fruit-seeds.html is enough to serve all these products. But the other pages, p=2 to p=4 are still present in Google's index with a self-referencing canonical tag and if I try to check these pages, they all show the same 15 products that are actually available on the main page.

While my canonical tags are telling Google that pages p=2 to p=4 have self canonical tags but Google is smart enough to understand that those pages are now showing the same products as the main page and it has to disregard my canonical tag. Hence it chooses different canonical and excludes p=2 to p=4 pages from the index. And it only shows https://www.example.com/seeds/fruit-seeds.html in the index.

How to check this?

Once you navigate to 'Google chose different canonical than user' under Index Coverage, you would see a list of URLs that were excluded from index. Click on any of those pages and you would see Page details that open on the right:-


Click on View as Search Result.

You would see the page that Google considered as canonical.

So basically you would see search modifier 'info:' followed by the excluded URL and as result you would see the canonical version Google preferred to index.


That's really smart. And this also proves rel canonical is a HINT and not a DIRECTIVE.

Comprehensive details on the Index Coverage Status Report is available here:


Edit - I had a detailed discussion on Twitter with Glenn Gabe on this topic later today. Thanks to his thorough guidance, here is a learning in such a scenario.

While Google would get this right most of the times, ideally having older component pages (example p=4 page) still resolving the same content as on page 1 isn't optimal. To handle such a situation, one can 404 these pages or redirect them to the right page depending on the situation. The point here is to make sure the pagination is clean, rel next/prev and rel canonical tags are placed correctly. And about the older component pages redirecting to the right page or returning 404 error, also depends on how big is the number of such pages.

You need to take care of the fact that 301 redirects to less relevant pages are treated as soft 404 errors!

- Tejas Thakkar