Google said “the changes mark the largest reduction in quality of service at the world’s most popular internet search engine in its 29-year search history.”
Google told Reuters that the launch of the most recent changes to the search results in the European Union under the DMA requirements led to the worst degradation of search quality in its history. “The changes mark the largest reduction in quality of service at the world’s most popular internet search engine in its 29-year search history,” Google official told Reuters.
What Google said.Google told Reuters:
- “Google said it sees that in reality the changes favor price comparison sites, also known as vertical search services (VSS), linked to sectors including hotels, airlines and restaurants, such as Expedia or Booking.com.”
- “They get more prominence in search results over companies in those sectors that are listed with just a link to their websites, telephone numbers and address.”
- “The revamped search results will highlight one specialized search engine at the top of the page, followed by two others with fewer details while a carousel of hotels, airlines and restaurants for example will sit below them with key features such as real-time prices stripped out. The rankings will be determined by Google’s algorithm.”
More details.Google has been going back and forth with the EU over the Digital Markets Act and proposingchanges to its search results for a while now.
Now that these changes are live, Google is saying these changes have reduced its quality of its search service.
In 2024, Google tested the changes, so it is no surprise Google is saying this now.
Google also added a new help document today documenting regional differences in its search experience.
Why we care.These changes only impact those searching in the European regions. But that is a big percentage of Google’s searchers. Of course, Google doesn’t want to make these changes, but Google has been forced by the European Commision. Does it really have a negative impact on search quality for the end user?
Topics on this page
Digital Markets ActEuropean UnionGoogleGoogle SearchSearch engine optimizationBooking.comEuropeEuropean CommissionExpediaLaw of the European UnionReutersVertical search
+7 more
Search Engine Land is owned by Semrush. We remain committed to providing high-quality coverage of marketing topics. Unless otherwise noted, this page’s content was written by either an employee or a paid contractor of Semrush Inc.
About the Author
Barry Schwartz is a technologist and a Contributing Editor to Search Engine Land and a member of the programming team for SMX events. He owns RustyBrick, a NY based web consulting firm. He also runs Search Engine Roundtable, a popular search blog on very advanced SEM topics.
In 2019, Barry was awarded the Outstanding Community Services Award from Search Engine Land, in 2018 he was awarded the US Search Awards the “US Search Personality Of The Year,” you can learn more over here and in 2023 he was listed as a top 50 most influential PPCer by Marketing O’Clock.
Barry can be followed on X here and you can learn more about Barry Schwartz over here or on his personal site.
${fullHTML}
`;
const collapseEl = document.getElementById(collapseId);
const truncatedWrap = bioEl.querySelector(‘.authorTruncatedBio’);
const lessLink = bioEl.querySelector(‘.authorReadLessLink’);
// If Bootstrap’s Collapse is available, wire it up. Otherwise, a tiny fallback.
const hasBootstrap = typeof bootstrap !== ‘undefined’ && bootstrap.Collapse;
if (hasBootstrap) {
collapseEl.addEventListener(‘show.bs.collapse’, () => {
truncatedWrap.classList.add(‘d-none’);
});
collapseEl.addEventListener(‘hide.bs.collapse’, () => {
truncatedWrap.classList.remove(‘d-none’);
});
collapseEl.addEventListener(‘shown.bs.collapse’, () => {
if (lessLink) {
lessLink.onclick = (e) => {
e.preventDefault();
bootstrap.Collapse.getOrCreateInstance(collapseEl).hide();
};
}
});
} else {
// Minimal JS fallback if Bootstrap isn’t present
const moreLink = bioEl.querySelector(‘.authorReadMoreLink’);
moreLink.addEventListener(‘click’, (e) => {
e.preventDefault();
collapseEl.style.display = ‘block’;
truncatedWrap.style.display = ‘none’;
});
if (lessLink) {
lessLink.addEventListener(‘click’, (e) => {
e.preventDefault();
collapseEl.style.display = ‘none’;
truncatedWrap.style.display = ”;
});
}
}
}
// Initialize all author bio blocks on the page (supports multiple posts/cards)
document.querySelectorAll(‘[id^=”authorBio”]’).forEach(initAuthorBio);
})();
