Sample Fix Pack
A handoff-ready fix pack.
This synthetic example shows how ProductProof packages evidence, impact, and implementation notes into something a store owner or developer can use immediately.
Audit + implementation notes
Developer handoff
Add structured shipping and return policy signals where store rules are stable.
Confirm shipping destinations, costs, return window, and exceptions before publishing markup. Do not hard-code values that conflict with checkout or policy pages.
Snippet guidance
Example JSON-LD direction
{
"@type": "Offer",
"price": "{{ product.selected_or_first_available_variant.price | money_without_currency }}",
"priceCurrency": "{{ cart.currency.iso_code }}",
"availability": "https://schema.org/InStock",
"shippingDetails": {
"@type": "OfferShippingDetails",
"shippingDestination": {
"@type": "DefinedRegion",
"addressCountry": "US"
}
},
"hasMerchantReturnPolicy": {
"@type": "MerchantReturnPolicy",
"returnPolicyCategory": "https://schema.org/MerchantReturnFiniteReturnWindow"
}
}
QA checklist
Do not ship markup until these checks pass.
The fix pack is designed to reduce back-and-forth between store owner, agency, and developer.
Shipping and returns must match visible public policy pages.
Default variant price and availability must not contradict the selected offer.
Validate Product and Offer output after the theme deploys.
Run ProductProof again and compare the issue list before/after.