A real Fix Pack we made for our own sister site, Marpolis.
We get asked "what exactly do I get for $49?" a lot, so here is one, in full: the real free-scan score for marpolis.com (our own real-estate marketplace in Chile), the code we validated and would ship, and the plain-English work order — the same three things every Fix Pack contains. No customer data here, and no number on this page is invented.
See it in full before you buy it.
This is the Fix Pack sample. See the full offer on the Fix Pack page.
What the free scan found on marpolis.com
Run on 2026-09-21 with the same engine behind the free audit at /free-audit.html — 15 dimensions, real measurements, no fabricated scores.
- 36Schema markup — types detected: WebSite, Organization, City. Missing the real-estate business type, and the address, phone and hours fields.
- 25AI Search Visibility (AEO) — no FAQPage schema, HowTo or Q&A signals detected on the page.
- 22Social presence — 1 active profile found (Instagram); the Facebook page link didn't verify.
- 20Reputation — no About page, no client proof, no Google Business/Maps link.
- 0WhatsApp & reviews — no WhatsApp integration and no visible reviews on the page.
What we shipped for the two dimensions we could fix outright
Real code, for this real page — not a generic template. Each block is validated with the audit engine's own schema checker before it goes out; copy either one and it's ready to paste.
1. Structured data for a real-estate marketplace Validated
What the scan found: "Types detected: WebSite, Organization, City · Missing industry schema: RealEstateAgent · Missing fields: address, telephone, openingHours" — the exact engine output, quoted.
Marpolis already had an Organization + WebSite block. We added the missing real-estate type, a real logo file and the real contact email, in place of the block already on the homepage.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": ["Organization", "RealEstateAgent"],
"@id": "https://marpolis.com/#org",
"name": "Marpolis",
"url": "https://marpolis.com/",
"logo": "https://marpolis.com/assets/marpolis/marpolis-appicon-512.png",
"image": "https://marpolis.com/assets/og-image.png?v=3",
"email": "contacto@marpolis.com",
"description": "Portal inmobiliario de La Serena y Coquimbo: casas, departamentos y terrenos en venta y arriendo, con precios en UF y contacto con corredores asociados. Marpolis es un intermediario tecnológico, no una corredora de propiedades.",
"areaServed": [
{"@type": "City", "name": "La Serena"},
{"@type": "City", "name": "Coquimbo"}
],
"sameAs": ["https://www.instagram.com/marpoliscom/", "https://www.facebook.com/people/Marpolis/61593810179660/"],
"parentOrganization": {
"@type": "Organization",
"name": "Don Gastón",
"url": "https://dongaston.com/"
},
"knowsLanguage": "es-CL"
},
{
"@type": "WebSite",
"@id": "https://marpolis.com/#website",
"url": "https://marpolis.com/",
"name": "Marpolis",
"publisher": {"@id": "https://marpolis.com/#org"},
"inLanguage": "es-CL"
}
]
}
</script>
✓ Checked with the engine's own schema validator (nwm_check_schema()) before shipping: it now reads the Organization, RealEstateAgent, WebSite and logo fields correctly, and the schema dimension's status moves from "fail" to "warn". Full pass needs a real street address, phone and hours — see "What we told them honestly" below for why those stay open.
2. FAQ markup, with answers that are true for Marpolis Validated
What the scan found: "No AEO signals detected (FAQPage schema, Q&A, Article)" — the exact engine output, quoted.
We read marpolis.com to write these — the answers describe how Marpolis actually works today, not generic real-estate boilerplate.
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "¿Qué es Marpolis?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Marpolis es un portal inmobiliario de La Serena y Coquimbo: casas, departamentos y terrenos en venta y arriendo, con precios en UF y mapa interactivo. Marpolis es un intermediario tecnológico, no una corredora de propiedades — cada publicación queda a cargo de un corredor asociado."
}
},
{
"@type": "Question",
"name": "¿Es gratis buscar propiedades en Marpolis?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Sí. Buscar, filtrar y ver fichas de propiedades en Marpolis no tiene costo ni requiere registro."
}
},
{
"@type": "Question",
"name": "¿Con quién hablo si me interesa una propiedad publicada?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Cada ficha muestra el nombre, correo y teléfono del corredor asociado a cargo de esa propiedad: el contacto y la negociación son directamente con esa persona, no con Marpolis."
}
},
{
"@type": "Question",
"name": "¿Marpolis cubre otras comunas además de La Serena y Coquimbo?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Hoy Marpolis publica propiedades en La Serena y Coquimbo, Región de Coquimbo."
}
}
]
}
</script>
✓ Checked against the same on-page detection the AI-visibility dimension uses: before pasting, the engine finds 0 FAQ entries on the homepage; with this block in place, it correctly finds all 4. We are not naming a new overall score for that — the real re-scan happens after the code is live (see below).
Two things we did not paste in — and told them honestly instead
A real Fix Pack only ships what is true. Marpolis genuinely has no published phone number and no Google Business Profile, so we did not invent either — we said so, and gave the closest real fix instead.
No click-to-call link
Marpolis doesn't have a central phone line — each property page shows the associated broker's own name, email and phone, and buyers contact that person directly. There is nothing honest to link to at the company level, so instead we gave Marpolis a click-to-email link to its real inbox, contacto@marpolis.com, which is the contact channel that actually exists today.
No Google Business Profile link
We looked, and Marpolis does not have one yet. We did not link to a page that doesn't exist. The honest fix is on the work order below: create a Google Business Profile as a service-area business (La Serena, Coquimbo) with no street address required, since Marpolis has no public office.
The plain-English work order that ships with this
About 5 minutes for someone who can edit the site's HTML.
Open the homepage template
Find the file that renders marpolis.com's homepage and open the <head> section.
Replace the existing schema block
Find the <script type="application/ld+json"> block that starts with "@graph" and swap it for code block 1 above. It keeps everything that was already there and adds the missing business type, logo and email.
Add the FAQ block
Paste code block 2 right before </head>, as its own second <script> tag. If you have room on the page, showing these same 4 questions as visible text (an accordion, or a short section) is a good practice — schema should match what a visitor can actually read.
Create the Google Business Profile
business.google.com → Add business → choose "I deliver goods and services to my customers" (service-area business, no street address needed) → set the service area to La Serena and Coquimbo.
Save, publish, verify
View page source and confirm both <script> blocks are there, or paste the live URL into Google's Rich Results Test. Then tell us — we run the re-scan.
What happens after the code is live
We do not post a new overall score on this page, because we haven't pasted the code into marpolis.com yet — that's a decision for whoever owns the deploy. Once it's live, we run the same free engine again and show exactly which items now pass. That before/after, not a number we made up today, is the proof every Fix Pack ends with.
Want to see your own score first?
Same free engine, your own site. If you want the fix, it's $49.
The fix, not another report.