Introduction — jewelry try on BigCommerce
If you sell jewelry on BigCommerce, adding a jewelry try on BigCommerce experience to your product detail pages is one of the fastest ways to reduce buyer hesitation and increase confidence at checkout. With tryitonme.com you can deliver a no‑code, link‑based virtual try‑on that launches from your PDP without an SDK or heavy integration—just a shareable product link from the tryitonme onboarding process. This guide shows where to place a PDP try on button, embedding options, minimal theme edits, and step‑by‑step QA so you can go live quickly and safely. Background on jewelry ecommerce: How to sell jewelry online and an engineering overview: WeIngenious virtual jewelry try‑on guide.
Why add a virtual try‑on for jewelry on BigCommerce
Jewelry shoppers frequently struggle with fit, scale, and how pieces layer together — issues that lead to hesitation, lower conversion, and avoidable returns. A virtual try‑on helps customers visualize scale and materials on themselves, which supports purchase decisions and can raise average order value when shoppers discover complementary items to pair.
Industry summaries show meaningful upside for retailers using virtual‑try‑on tools; see vendor overview & benefits at GemFind. Jewelry needs VTO differently than apparel — scale perception, layering, and metallic finish are particularly important (see WeIngenious and AI Try‑On tips). For measured ROI outcomes specific to rings see case studies at Cermin ROI rings.
If you’re cautious about technical risk, a link‑based, zero‑code approach significantly reduces implementation effort and time‑to‑market compared with SDK/API installs (integration tradeoffs overview: Zakeke; example BigCommerce app options: Valigara app). A no‑code shareable link means you can experiment quickly and measure value before committing to deeper integrations. For platform walkthroughs (Shopify example): Cermin Shopify guide.
Why tryitonme.com is the Right Fit for Your Business
tryitonme.com is built for merchants who want accurate accessory virtual try‑on with minimal friction. Key reasons it’s practical for BigCommerce:
- Zero‑code, link‑based deployment: productized shareable links — no SDKs or APIs required. Overview: tryitonme no‑code VTO
- Fast onboarding: purchase a 6‑month SKU package, send standard product photos, tryitonme’s team/AI handles AR processing, and you receive a ready‑to‑use try‑on link in under 3 business days (see tryitonme onboarding). Pricing: tryitonme pricing
- Channel‑flexible: the same link works across web, mobile, and social channels.
- Support for accessories: optimized for jewelry, eyewear, watches, and hats.
Ready to see it? Book a demo at tryitonme.com to request a sample shareable link and onboarding details.
Overview of tryitonme.com for BigCommerce merchants
tryitonme.com returns a unique try‑on link per product/variant. Map SKUs to tryitonme links during onboarding; the tryitonme team and AI handle AR asset processing so you don’t need 3D models or an SDK. Product/demo: tryitonme product. Typical deployment options are documented with UX examples: BigCommerce eyewear try‑on UX
- Open in a new tab (fastest, zero‑code)
- Modal overlay (keeps customers on the PDP)
- Inline iframe embed (seamless PDP experience)
tryitonme links can accept SKU/variant tokens so you can dynamically target the correct product from your PDP; asset mapping and file specs are handled during onboarding (contact tryitonme for mapping support).
Decide how to embed: options & tradeoffs
Pick an embed pattern that balances UX, performance, and development time:
Option A — New tab (fastest, zero‑code)
What: A PDP try on button links directly to the tryitonme share URL (target=”_blank”).
Pros: Simple to add via product custom fields or control panel HTML; no site performance impact.
Cons: Leaves the PDP context and session; you’ll need UTM or click tracking to attribute.
Option B — Modal overlay (recommended middle ground)
What: Button opens the tryitonme link inside a modal with an iframe.
Pros: Keeps the shopper on your PDP; better perceived speed.
Cons: Small JS required; test mobile pinch/zoom and accessibility.
Option C — Inline iframe embed (most seamless)
What: The tryitonme embed appears inline on the PDP (e.g., beneath images).
Pros: Seamless, immersive experience.
Cons: Larger impact on page load and responsive layout; ensure lazy loading and responsive height handling. For integration tradeoffs see Zakeke integration guide. For BigCommerce theme guidance see the Stencil video: Stencil theme guidance (YouTube).
Step‑by‑step: Add a PDP try on button to BigCommerce
Checklist for adding a PDP try on button:
- Choose placement — recommended:
- Next to Add to Cart (prominent)
- Beneath product images (contextual)
- Beside variant selectors (helps match scale to selected variant)
Rationale: jewelry purchases often hinge on visible scale and variant selection (BigCommerce jewelry guide).
- Determine implementation path:
- Zero‑code: Add an HTML link in the product description, a custom field, or use BigCommerce Script Manager to inject button HTML.
- Minimal theme edit: Edit Stencil templates such as templates/components/products/product-view.html or templates/pages/product.html (file names vary by theme). See Stencil theme guidance.
- Add dynamic SKU/variant injection:
If using a theme edit, inject your product SKU or ID into the tryitonme link so the correct asset loads.
- Test in staging:
Use a staging child theme, back up templates, and validate across devices.
Code snippet examples
The snippets below are copy/paste ready. Replace placeholders and adapt your theme’s template variables (example uses a generic {{product.sku}}—your theme may use different syntax).
1) Anchor link (New tab — zero code)
<a href="https://tryitonme.com/share/[SKU]?utm_source=bigcommerce" class="btn-try-on" target="_blank" rel="noopener">
Try on virtually
</a>
<!-- Replace [SKU] with your product SKU or template variable, e.g. {{product.sku}} -->2) Modal opener (JS + minimal CSS)
<button class="pdp-try-on-btn" data-vto="https://tryitonme.com/share/[SKU]">Try on virtually</button>
<style>
/* Minimal modal CSS — scope to your theme */
.vto-modal { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.6); }
.vto-content { width:90%; max-width:900px; margin:40px auto; background:#fff; padding:0; }
</style>
<script>
document.querySelectorAll('.pdp-try-on-btn').forEach(btn=>{
btn.addEventListener('click', (e)=>{
e.preventDefault();
const url = btn.dataset.vto.replace('[SKU]', '{{product.sku}}'); // adapt template var
// create modal + iframe, or fallback to window.open(url)
// Fallback: window.open(url, '_blank')
});
});
</script>3) Responsive iframe embed (inline)
<div class="vto-container" aria-label="Virtual try-on">
<iframe src="https://tryitonme.com/embed/[SKU]" loading="lazy" style="width:100%;height:560px;border:none;"></iframe>
</div>4) GTM / GA4 event example
// Fire when try on button clicked
gtag('event', 'try_on_click', { 'product_sku': '{{product.sku}}' });Developer note: validate these snippets against your store’s Stencil/Blueprint template syntax and test in a staging theme.
Theme edits & best practices for BigCommerce
- Always test changes in a staging or child theme and back up templates before edits (Stencil video).
- Use BigCommerce Script Manager for site‑wide JS/CSS injections when you want to avoid direct file edits.
- Scope CSS to avoid collisions with theme classes.
- Accessibility: include aria-labels (e.g., aria-label=”Open virtual try-on”), keyboard focus trapping in modals, and clear close buttons.
- Responsive: set iframe/container breakpoints and lazy-load embeds to protect page performance.
Product mapping & content setup
Prepare assets and mapping during onboarding:
- Naming convention: map each SKU to the tryitonme share link during onboarding (tryitonme handles asset mapping — contact: tryitonme).
- Photo guidance: provide clear, high‑resolution photos showing the product’s scale and detail (WeIngenious setup; AI TryOn tips).
- Variants: ensure variant-level SKUs are distinct so the correct try‑on asset loads.
QA checklist
Copyable QA checklist:
- [ ] PDP try on button is visible and correctly labeled on desktop and mobile
- [ ] Button loads the correct tryitonme product/variant link
- [ ] Modal/iframe opens, resizes, and closes properly (keyboard accessible)
- [ ] Cross‑browser tested: Chrome, Safari, Firefox; devices: iOS and Android
- [ ] Performance: iframe/modal lazy‑loads to avoid blocking LCP
- [ ] Analytics: try_on_click and try_on_open events fire and appear in GA4/GTM DebugView
- [ ] UTM parameters propagate to tryitonme links for campaign attribution
- [ ] Fallback: broken or blocked iframe opens in a new tab with a user‑friendly error
- [ ] Sign‑off: test passes for a representative sample of SKUs/variants
For common integration issues and fixes see: Zakeke integration guide.
Conversion & UX best practices for the PDP try on button
- CTA copy ideas: “Try on virtually,” “See this on you,” “Try this ring on.”
- A/B test placements: beside Add to Cart vs. under images; measure try‑on CTR and try‑on→add‑to‑cart conversion.
- Microcopy: add short guidance about lighting and accurate scale (e.g., “Tip: try in natural light for best results”).
- Social/share: promote the shareable tryitonme link for user‑generated content and social proof.
- Additional UX patterns and PDP CTA recommendations: Cermin Shopify UX and Cermin PrestaShop UX.
Tracking & analytics
Track the full try‑on funnel using dataLayer events or GA4. Recommended events: try_on_click, try_on_open, try_on_close, try_on_share, try_on_to_cart. Include product identifiers (SKU, ID) and UTM parameters for campaign attribution. Test events with GA DebugView and GTM preview before launch. Measurement plans and examples: Cermin analytics plan.
Launch plan & rollout
- Stage: Deploy to staging theme and complete QA checklist.
- Soft launch: Send to a slice of traffic (5–20%) or to a subset of SKUs.
- Measure: CTR, try‑on→add‑to‑cart, conversion rate, and effect on returns.
- Iterate: tweak placement, copy, and fallbacks based on early data.
- Rollback: remove button or revert template if severe UX issues occur; escalate to tryitonme support for mapping or asset problems.
Troubleshooting & common issues
- Variant mismatch: recheck SKU mapping in tryitonme onboarding.
- Iframe blocked by CSP: ensure server headers allow iframe from tryitonme or use new‑tab fallback.
- Slow loads: lazy‑load the iframe or use modal/new‑tab option.
- Scale/placement oddities: resubmit product photos or contact tryitonme for asset reprocessing.
Real merchant examples & suggested case study ideas
Use these templates to track impact after launch:
- A/B test: 50% control vs. 50% VTO — measure try‑on CTR, try‑on→add‑to‑cart, and conversion uplift.
- Returns analysis: compare return rates for SKUs with and without VTO in a 30‑day window.
- AOV study: measure cross‑sell lift when customers use try‑on and are shown complementary items.
Vendor comparisons and industry outcomes: GemFind overview and tryitonme vs Perfect Corp.
Technical deliverables & assets to prepare
- Copy/paste snippets: anchor link, modal JS + CSS, iframe embed, GTM event snippet (validate on Stencil staging).
- Visuals: annotated screenshots of PDP placements, modal and inline embed; short GIF/video of tryitonme link opening from a PDP.
- QA checklist: formatted copyable checklist included above.
- Developer validation: confirm dynamic SKU/variant injection works in a Stencil staging theme.
- Suggested file names and alt text: include keywords, e.g., “jewelry-try-on-bigcommerce-pdp-button.png” with alt=”jewelry try on BigCommerce — PDP try on button example”.
Call to action — demo & next steps
Ready to add virtual try on BigCommerce to your PDP? Request a demo or a sample shareable link at tryitonme.com. Onboarding steps: purchase a 6‑month package, send standard product photos, tryitonme’s team/AI processes the assets, and you receive your try‑on links in under 3 business days (tryitonme).
Further reading and resources
- How to sell jewelry online (BigCommerce)
- Virtual jewelry try‑on build guide (WeIngenious)
- VTO integration tradeoffs (Zakeke)
- tryitonme product/demo
- BigCommerce Stencil theme guidance (video)
- tryitonme jewelry no‑code VTO overview
- tryitonme pricing for accessories
- Jewelry try on Shopify guide
- Jewelry try on UX Shopify
- Blue light glasses product photo guidance
- Try‑on analytics measurement plan
Meta & SEO notes for publishing
Title: Jewelry Try On BigCommerce: How to Add a No‑Code Virtual Try‑On to Your PDP
Slug: /jewelry-try-on-bigcommerce-pdp-no-code-guide
Meta description: “Add jewelry try on BigCommerce to your PDP with tryitonme.com—no code needed. Step-by-step: embed virtual try on, theme edits, QA, and conversion tips.”
Include target keywords naturally in H2s and alt text for images/screenshots. Internal links: tryitonme demo/contact and BigCommerce Stencil docs/video.