Skip to main content
LinkTech Solutions
Website Development

7 Website Changes to Stay Visible Inside Google AI Mode (2026 Playbook)

May 25, 2026·10 min read·By Nezar Humoud, Founder

Follow us

Every other article on Google AI Mode tells you to use AI tools. This one tells you how to make sure AI Mode shows your business when customers ask. The 7 technical changes — schema, structure, /llms.txt, and the E-E-A-T signals that earn citations in AI answers.

Every other article on Google AI Mode tells small business owners to use AI tools. This one tells you how to make sure AI Mode shows your business when a customer asks it for one.

We've been making the same seven changes on every client website we touch since AI Mode rolled out broadly earlier this year. They're not theoretical — they're the changes that moved real client sites from invisible in AI answers to cited in them. Each one is a technical edit a developer can ship in an afternoon. None of them require new content.

Here's the playbook.

What changed (and why this is urgent)

AI Mode isn't “another search result.” It's Google's answer-first interface — a chat-style response synthesized from a small handful of sources, with links cited inline. Your website doesn't have to rank anymore. It has to be cited.

The difference matters. Classic SERP lets you compete on title tags and backlinks. AI Mode picks which sources to pull from based on whether your content is extractable (structured cleanly), recent (updated this year, not 2019), attributed (clear named author), and disambiguated(Google knows which “Anderson Plumbing” you are). Most small business websites fail on all four.

This is the gap. The seven changes below close it.

1. Add FAQPage schema to every service page

The single highest-leverage change. FAQ-marked content gets pulled into AI Overviews and AI Mode answers at a disproportionate rate compared to unmarked paragraphs that say exactly the same thing.

Pick 4–6 real questions your customers ask before they buy. Don't invent them. Then mark them up with FAQPage JSON-LD — each question becomes a Question object with the question text as the name and the answer as acceptedAnswer.text. Most CMS plugins ship this for you if you flip on the FAQ schema option; on a custom build, drop the markup into the page head alongside your other JSON-LD.

How to know it worked:paste your URL into Google's Rich Results Test. If FAQPage shows up as a valid item, you're done. Wait two weeks, then search one of your FAQ questions verbatim. If you appear in the AI Overview or the People Also Ask box, the schema is doing its job.

2. Restructure your H2s as direct-answer questions

AI Mode extracts content in “answer pockets” — short, self-contained passages that answer one question completely. The fastest way to format your page for this is to make each H2 a question and write the first sentence under it as the answer.

The before version— an H2 reading “Our Process” followed by a generic intro paragraph (“We start with discovery, then move into design…”) gets ignored by the extractor because nothing in it answers a specific question someone might type into Google.

The after version— the same content with the H2 reframed as “How long does it take to build a custom website?” and the first sentence answering it directly (“Most of our small business sites launch in 14 days”) gets pulled into AI answers verbatim. Same content, different structure, completely different AI visibility.

How to know it worked:ask ChatGPT or Google's AI Mode the exact question your H2 poses. If your site appears in the citations, the structure is working. If a competitor's site is being cited for a question you've answered better, your structure is wrong.

3. Publish an /llms.txt file

The llms.txt file is to AI crawlers what robots.txt is to search crawlers — a single plain-text file at your domain root that tells LLMs what content matters on your site, in what order, and how to attribute it. Anthropic, OpenAI, Google, and Perplexity all read it.

Place it at yourdomain.com/llms.txt. Format is plain Markdown — an H1 with your business name, a one-line summary, and then sections listing your top services and About pages as bulleted links with a short description next to each one. Fifteen minutes of writing, tops.

It signals to every LLM crawler that you're paying attention to AI distribution. Two of our clients started getting cited in Perplexity within 30 days of publishing one.

How to know it worked:hit yourdomain.com/llms.txt and confirm it returns the file (not a 404). That's the bar. The downstream effect on citations is slower and harder to measure directly.

4. Move pricing out of PDFs and modal popups into crawlable HTML

This one trips up so many small business sites. If your pricing lives in a downloadable PDF, a “click to see pricing” modal, or a Calendly-only flow, LLMs can't read it — and if they can't read it, they won't cite you when a customer asks “how much does X cost?”

Pricing has to live as plain HTML on a real URL. If you don't want to publish exact dollar amounts, publish a range. If you charge custom, publish the starting point (“from $5,000”) and the factors that move it (“project scope, integrations, timeline”).

The fix on the code side is usually moving content from a JavaScript-rendered modal into the server-rendered page body. Check the rendered HTML — view source, or run the page through Google's Mobile-Friendly Test — and make sure your pricing words actually appear in the response.

How to know it worked:view source on your pricing page (right-click → View Page Source). Search for your dollar amounts. If you find them in the raw HTML, AI crawlers will too. If they only appear after JavaScript runs, half of LLM crawlers won't see them.

5. Add Person schema for every author, with sameAs links

E-E-A-T (Experience, Expertise, Authoritativeness, Trustworthiness) matters more in AI Mode than it ever did in classic search. AI Mode's source-selection pass actively looks for content with named, verifiable authors over content from anonymous brand pages.

For every article and every service page, mark the author with Person JSON-LD that includes a full name, a jobTitle (with the license number for service businesses), the URL to their bio page, and a sameAs array linking out to LinkedIn plus any verifiable credential lookup — for plumbers, electricians, and contractors that means the California State Licensing Board record. For attorneys it's the State Bar profile. For medical, the medical board.

The license-board link is the killer detail. For service businesses, a verifiable license number tied to a real person is the single strongest E-E-A-T signal you can ship.

How to know it worked:the Rich Results Test will validate the Person markup. The longer-term tell: when AI Mode answers questions about your service category, see whether it cites your named author versus a competitor's anonymous “Our Team” page.

6. Add “Last updated” timestamps and actually update them quarterly

AI Mode's recency weighting is stronger than classic SERP's. A page that says “Last updated March 2026” outranks an undated page with the same content. A page that says “Last updated March 2026” but actually hasn't been touched in two years gets demoted hard when Google's crawler notices the staleness.

The fix: every article and every service page gets a visible “Last updated” line near the top. Pair it with a dateModified field in your Article JSON-LD. Then schedule yourself a quarterly calendar block to actually refresh each page — even a 50-word revision counts as long as it's meaningful, not just a date bump.

The combination — visible date plus valid dateModified plus actual content refresh — is what earns the recency boost. Skip any one of the three and Google's checks will catch it.

How to know it worked:open your sitemap.xml and check the lastmod values. If they're all the same date or all in the deep past, your CMS isn't tracking modifications properly — that's the deeper fix. If modifications are tracked but no page has been updated in 12+ months, you have a content-staffing problem, not a schema problem.

7. Disambiguate your brand with internal links to canonical entity pages

When AI Mode is deciding which “Anderson Plumbing” to cite — because there are probably twelve in the United States — it uses internal linking patterns to figure out which one you are. A site that links its own brand mentions back to a canonical About page makes itself easy to disambiguate. A site that mentions itself dozens of times in body copy without ever linking those mentions confuses the model.

The rule: every mention of your brand name, your founder's name, and your service categories in your own copy should link to a canonical page for that entity. The brand links to your About page, the founder links to a dedicated founder page, each service category links to its service page, each city you serve links to its own service-area page.

This is also where local businesses win big. If you serve five cities, build five clean service-area pages and link to them from every article that mentions those cities. AI Mode is far more likely to cite you for a city when it can see a dedicated page for that city than when “we serve Pasadena” is buried in a generic homepage paragraph.

How to know it worked:run a crawl of your own site (Screaming Frog or any free tool) and check how many internal links point to your About page, your founder's page, and your top 5 service-area pages. Single digits means you haven't done the work. Triple digits means you're disambiguated.

Common questions about AI Mode and small business websites

Is Google AI Mode free to use?

Yes — AI Mode is the same Google.com search with the AI Mode tab toggled on. Users don't pay; businesses don't pay to appear. Visibility is earned the same way classic SEO visibility is — through citations. The difference is that AI Mode picks its sources based on schema cleanliness, content structure, recency, and verifiable authorship rather than classic ranking signals like backlinks alone.

How can I tell if my business is showing up in Google AI Mode?

Search for the questions your customers actually ask (for example, “best plumber in Riverside CA” or “how much does a custom website cost”), open the AI Mode tab, and look at the citations linked inline in the response. If your site isn't listed, the 7 technical changes above are where to start. Don't trust SEO tools for this in 2026 — most are still building AI Mode tracking and report inconsistently.

Will Google AI Mode kill my small business website traffic?

For informational queries (“what is X”, “how does Y work”), click-through rates will drop because users get the full answer in-line and don't need to visit. For commercial intent (“hire a plumber in Riverside”, “web design near me”), AI Mode still routes traffic to your site because it can't deliver the service itself. The strategic shift for small businesses is to optimize for being the cited source on informational queries — which builds brand trust — and optimize for converting the visitor once they click on commercial ones.

What's the difference between AI Overviews and Google AI Mode?

AI Overviews are the AI-generated answer boxes that appear at the top of a classic Google search results page. AI Mode is the dedicated chat-style interface — a separate tab where the entire experience is conversational. Both pull from the same source pool using the same selection criteria, so the seven changes above optimize for both at once. If your site is being cited in AI Overviews, it has a high chance of being cited in AI Mode too.

Want us to ship these seven changes for you?

We build custom websites for Southern California small businesses, and the seven changes above are the baseline on every site we touch. If you'd rather have them shipped on your existing site than figure out which CMS plugins might do it, tell us about your project and we'll send back a written quote.

Real engineers, not sales reps. Reply within 1 business day.

Prefer to talk? Call (909) 662-4058 — no intake form required.

Not ready to talk? Get a free AI-generated Revenue Opportunities Report for your current site — it surfaces concrete fixes with no commitment.

Want to talk live? Book a 30-minute call with Nezar directly.

More insights

Business StrategyBest Web Design Agencies in Orange County (2026): Honest Roundup by Specialty

Most “best web design agencies in Orange County” lists are paid placements. This one is editorial — six OC agencies including ours, sorted by what each one is genuinely best at, with the watch-outs nobody else will tell you. Use it to pick the right fit, not the loudest pitch.

May 24, 2026·12 min read

Business StrategyWhy Your Website Isn't Showing Up on Google (or Converting): The 2026 Self-Diagnostic for California Businesses

Google now answers “why isn’t my website showing up” with its own AI Overview — 5 generic reasons you can't act on, and it never mentions the other way your site fails you: it ranks fine and nobody calls. Here's the full 10-point diagnostic for California small businesses, and how to check every item in 60 seconds.

May 16, 2026·11 min read

Website DevelopmentWhy HVAC Companies Need a Website in 2026: The 201K-Search Reality

201,000 people search “HVAC near me” every month in the US — and HVAC contractors pay $20+ per Google Ads click to compete for them. Here's the data on why a real website (not just a logo and a phone number) is the highest-ROI marketing asset an HVAC business can build in 2026.

May 14, 2026·10 min read

Website DevelopmentWhy Coffee Shops Need a Website in 2026: The 7.48M-Search Reality

“Coffee shop near me” gets 7.48 million Google searches every month in the US. If your cafe lives on Instagram alone, you're invisible to most of them. Here's what coffee shop owners are actually losing — and what a website needs to do in 2026.

May 14, 2026·9 min read

Website DevelopmentHow Much Does a Website Cost in 2026? Real Pricing for California Businesses

Most “how much does a website cost” answers are useless because the honest range is $500 to $250,000+. Here’s the breakdown by site type, what actually drives the price, and what small businesses in California really pay in 2026.

May 4, 2026·9 min read

Website DevelopmentWordPress vs. Custom Website: How to Choose in 2026

WordPress powers 43% of the web — but it isn't the right fit for every business. Here's the straight framework for deciding between WordPress and a custom-built site, and the scenarios where picking wrong costs you revenue.

April 17, 2026·8 min read

Business StrategyWhat It Costs a California Small Business to Not Have a Website in 2026

Most California small businesses without a website are losing $15,000–$50,000+ in revenue every year — and they don't even realize it. Here's the real cost of staying invisible online.

April 3, 2026·7 min read

QuickbaseWhat Is Quickbase Development? A Plain-English Guide for Business Leaders

Quickbase is a low-code platform for building custom workflow apps. Here's what 'Quickbase development' actually means, who does it, and whether it's the right fit for your business.

October 15, 2025·6 min read

QuickbaseQuickbase vs. Custom Software: How to Choose for Your Business

Both solve workflow problems — but they're not interchangeable. We break down when Quickbase is the right call and when you need a custom-built solution.

November 5, 2025·8 min read

QuickbaseHow Operations Teams Use Quickbase to Build Internal Tools

Operations teams at mid-market companies are using Quickbase to replace spreadsheets with purpose-built internal tools — project tracking, approval workflows, vendor management, and reporting dashboards. Here's what that looks like in practice.

December 10, 2025·7 min read

Ready for a website that brings in customers?

Schedule a free consultation with our team. No sales pitch — just a straight conversation about your project.