The whole page is blank - none of my Storesynk tags do anything
Section titled “The whole page is blank - none of my Storesynk tags do anything”Nothing is wrapped in <storesynk-store>, so there is no store context, no API client, and no cart - every descendant renders silently empty (SSK-101). Wrap your entire storefront tree in a single <storesynk-store domain="…" token="…">. There must be exactly one store per page; nesting two collides their cart runtimes (SSK-104).
A single displayer (price, title, image…) is blank but the rest of the product works
Section titled “A single displayer (price, title, image…) is blank but the rest of the product works”That displayer is sitting outside its <storesynk-product> ancestor, so it consumes the product context with no provider and renders nothing (SSK-102). Move the tag - show-title, show-price, show-image, change-option, add-to-cart, etc. - inside the <storesynk-product> whose data it should show.
Nothing renders even though everything looks correctly nested
Section titled “Nothing renders even though everything looks correctly nested”Confirm the bundle script actually loaded. With no <script type="module" src="/storesynk.js"> (or wherever the self-hosted bundle lives), the custom elements are never defined and every tag is just an inert unknown element (SSK-401). Also check for a typo in a tag name: a misspelled element like show-prices or add-cart is never upgraded and stays empty (SSK-301).
My product shows duplicated or wrong data
Section titled “My product shows duplicated or wrong data”You have a <storesynk-product> nested inside another <storesynk-product> (SSK-103). The inner one overrides the context, so bindings double up or point at the wrong product. Don’t nest products - a list or search item template holds exactly one product.
Cart-line fields (line title/price/image) are blank inside the drawer
Section titled “Cart-line fields (line title/price/image) are blank inside the drawer”Those show-line-* displayers and the increase-line-quantity/decrease-line-quantity/remove-cart-line controls need the <cart-line> context; outside it they have no line reference and render nothing (SSK-105). Make sure they live inside the <cart-line> template, and that <cart-line> itself is inside a <cart-line-list> (SSK-106).
Imported from the Storesynk skill v0.1.0 (references/known-issues.md). To change this page, change it there.