Google updated its Location asset requirements with clearer language and troubleshooting guidance
Google updated its Location asset requirements in September, revising terminology, improving readability and adding troubleshooting guidance for advertisers.
Why we care. Advertisers using location assets now have clearer guidance for understanding and troubleshooting requirements, but Google says there is no change to policy enforcement.
The details. Location assets let advertisers supplement their ads with information about a specific business location, including its address, phone number, opening hours and ratings.
They remain subject to Google’s standard advertising policies as well as its specific Location asset requirements.
Zoom in. Google Business Profile is commonly used to supply the business information needed for location assets in Google Ads.
Business information and location images are managed directly through the advertiser’s Google Business Profile rather than within Google Ads.
Google also notes that Business Profile is only available in supported countries and regions.
Yes, but. Despite updating the requirements twice this year, Google says the changes are about clarity rather than enforcement.
Advertisers aren’t facing a new Location asset policy or a change in how Google applies the existing rules.
Bottom line. Google’s latest updates give advertisers clearer instructions for setting up and troubleshooting Location assets without changing the underlying policy enforcement.
Topics on this page
Google AdsGoogleGoogle Business ProfileOnline advertising
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
Anu Adegbola has been Paid Media Editor of Search Engine Landsince 2024. She coverspaid search, paid social, retail media, video and more.
In 2008, Anu started her career delivering digital marketing campaigns (mostly but not exclusively Paid Search) by building strategies, maximising ROI, automating repetitive processes and bringing efficiency from every part of marketing departments through inspiring leadership both on agency, client and marketing tech side.Outside editing Search Engine Land article she is the founder of PPC networking event – PPC Live and host ofweekly podcast PPC Live The Podcast.She is also an international speaker with some of the stages she has presented on being SMX (US, UK, Munich, Berlin), Friends of Search (Amsterdam, NL), brightonSEO, The Marketing Meetup, HeroConf (PPC Hero), SearchLove, BiddableWorld, SESLondon, PPC Chat Live, AdWorld Experience (Bologna, IT) and more.
${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);
})();
