FAQ editor + embed widget
Clione lets you add FAQs per product, per category, per page, or globally — then injects them into your storefront with one script tag.
Adding FAQs manually
Under FAQs → Add:
- Pick the Entity Type (Product, Variant, Category, Page, or 🌐 Global)
- Search for the entity by name (the input shows the name, not the raw ID)
- Write the question and answer
- Save
Global FAQs apply to every page on your store — perfect for shipping, returns, warranty, size guides. They appear alongside entity-specific FAQs on every render.
Generating FAQs automatically
Under FAQs → Generate, the system drafts questions+answers using the LLM with your product data as context. Review and approve.
Bulk import
Under FAQs → Import, paste or upload a CSV:
entityType,entityId,question,answer,locale,sortOrder
product,SKU-001,What is the warranty?,2-year manufacturer warranty,en,0
global,,What are your shipping times?,2–5 business days within the EU,en,0
Exporting
- Per-entity: in the Browse panel, filter by entity and click
↓ Export CSV - Whole store: click
↓ Download all FAQs (CSV)at the top of the FAQ page → one file with every FAQ across all entities
Embedding on your storefront
Under FAQs → Embed Script:
- Generate an API key
- Set the Allowed Domains whitelist (e.g.
shop.example.com,*.example.com) — required to block scraping / abuse - Copy the auto-detect snippet:
<div id="clione-faq"></div>
<script
src="https://api.clione.ai/embed.js"
data-api-key="sk_live_…"
data-target="#clione-faq"
async
></script>
The loader detects the current entity from:
data-entity-type+data-entity-idattributes you put on the script tag (if you want to override)- OpenGraph meta tags (
og:type="product",product:retailer_item_id) - URL patterns: Shopify
/products/, BigCommerce/product/, WooCommerce body class, etc.
It then fetches the matching FAQs (merging entity-specific + global) and injects both a visible accordion and a JSON-LD FAQPage schema for SEO.