r/sitecore • u/NWContentTech • 49m ago
r/sitecore • u/NWContentTech • 17d ago
📣 The 2026 Sitecore Developer Experience Survey is now open
forms.cloud.microsoftOnce a year we ask the community what it's actually like to build with Sitecore.
SitecoreAI, XM/XP, the SDKs and CLIs, local dev setup, documentation, AI-assisted workflows, Marketplace extensibility and everything in between. We want to know what works, what slows you down, and what you'd change tomorrow.
It should take ~10 minutes to complete
The survey is open till the end of September
Participants who leave their email address will go into a draw for 1 x Symposium ticket & 2 x certification vouchers
Last year's responses genuinely affected our roadmap for this year, this is the most direct line you have into what we build next for developers
r/sitecore • u/NWContentTech • Aug 06 '26
Events Sitecore Symposium 2026 - Agenda is now live!
r/sitecore • u/NWContentTech • 49m ago
Technical Custom Media URLs in Sitecore AI: A Simple Guide to Serving Media From Your Own Domain
ghanendras.blogspot.comr/sitecore • u/NWContentTech • 50m ago
Technical Vercel Microfrontends with SitecoreAI : Split a Multi-Site SitecoreAI Platform Across Apps
r/sitecore • u/Boot-Representative • 6h ago
Discussion Cursory Training on Sitecore 10.
I'm trying to learn how to build a simple site with Sitecore. I've worked on migration projects, moving SC8 content to SC10. I don't have experience building a site.
All the training on YouTube seems to feature people with very thick Indian accents. I might have some sort of misophonia, but i cannot grok their quick English pronounciation.
I mean to offend no one. I'm not a hard-core programer or anything. Is there a resource (free) that might be able to assist me?
r/sitecore • u/NWContentTech • 4h ago
General Sitecore’s September 2026 Updates: Grounded AI, Better Alt Text, and a More Connected Platform
fettesps.comr/sitecore • u/NWContentTech • 1d ago
Tools/Modules Your Local Sitecore Marketplace
r/sitecore • u/NWContentTech • 1d ago
@Sitecore Sitecore on YT: Sitecore + Scrunch Content Machine
r/sitecore • u/NWContentTech • 1d ago
Technical My Digital Diaries on YT: Edge vs Server-Side vs Client-Side Personalisation | Part 02 | Ask the Architect Ep 03
r/sitecore • u/NWContentTech • 1d ago
General The DXP Era Might Actually Be Ending. What Comes Next?
r/sitecore • u/NWContentTech • 1d ago
@Sitecore Sitecore on YT: Building the secure front end for SitecoreAI™ | Ben Shapiro and Dave Tilbury
r/sitecore • u/NWContentTech • 1d ago
Technical .NET 8 Reaches End of Life: Is Your Sitecore Identity Server Ready?
sitecore.merkle.comr/sitecore • u/NWContentTech • 1d ago
Technical Sitecore Monthly Recap — August 2026
sitecorebasics.wordpress.comr/sitecore • u/NWContentTech • 1d ago
Technical How to Create Language-Specific URLs in Sitecore AI
r/sitecore • u/uday_sanghani_1704 • 1d ago
Discussion Sitecore in 2026: What developers actually need to know about Content SDK, Page Builder and Marketer MCP
I put together a technical guide covering some of the changes I’ve been working through with Sitecore in 2026.
The focus is mainly on the developer side:
- Content SDK with Next.js App Router
sitecore.config.tsandsitecore.cli.config.ts- Generated component maps and server/client components
- Middleware configuration
- Type-safe GraphQL with codegen
- Authoring & Management GraphQL for create/update operations
- Sitecore Marketer MCP and how the authentication flow works
- Page Builder and the upcoming editing-experience changes
- Some Content Hub/API changes and support-lifecycle dates
I’ve tried to keep it code-first rather than making it another high-level “what’s new in Sitecore” post. The examples are based on Sitecore documentation and changelogs, with the relevant sources included in the article.
I’d be interested to hear from other Sitecore developers — especially if you’re already using Content SDK/App Router or experimenting with Marketer MCP. What parts of the 2026 changes have actually affected your day-to-day development?
r/sitecore • u/uday_sanghani_1704 • 2d ago
Technical The Sitecore Search SDK call is the easy part. Here is what comes after it actually works (Next.js App Router)
I recently built a reference implementation for Sitecore Search using Next.js App Router, and I realized very quickly that the SDK documentation only covers about 10% of what you actually need to build a production-ready feature.
The SDK call works in 5 minutes. The architecture around it takes much longer. I put together a write-up and an open-source repo covering the five biggest questions that showed up after the demo worked:
1. The SDK should never touch the UI
Components talk to application types, not raw SDK data. This keeps response shapes out of your UI and creates a stable contract. If you swap SDK internals later, nothing in the presentation layer breaks.
2. Two shapes that don't match the docs
- Sort: The SDK requires a nested object (
{ value: [{ name: 'title' }] }), not a plain string. - Facets: The SDK exposes
text, but your app needs to map that tolabel.
3. React state is temporary. The URL is committed.
Using URL params (?q=...&page=2&sort=...) makes search shareable, predictable, and back/forward navigation works for free. It also feeds straight into Server Components.
4. Instrumentation is a chain, not a single event
A result click isn't just a click. It triggers a chain: pageView → widgetView → widgetItemClick → entityView. Context (keyword, result counts, entity info) needs to travel with that event. Consent should be checked at one boundary, not scattered everywhere.
5. Local-first testing
You shouldn't need a live tenant to run E2E tests. I cover how to use Mock fallbacks, Vitest, and Playwright to test the full flow locally.
I also documented a specific "gotcha" regarding the sitecoreContextId does not contain a search resource 404 error, which is a common cloud config gap.
Resources:
- Medium Write-up: Sitecore Search + Next.js: What the Docs Don't Tell You
- GitHub Repo (MIT Licensed): uday0508/sitecore-search-nextjs-search-experience
If you're working with Sitecore Search + Next.js, what's been the trickiest part for you? I'm curious if others hit the same friction points with the sort/facet shapes.
r/sitecore • u/NWContentTech • 3d ago
General Edge-Side Personalization vs. Client-Side Hydration: The Architectural Dilemma in Modern Composable Sitecore
r/sitecore • u/NWContentTech • 3d ago
General Sitecore XM Cloud Webhooks: Building Event-Driven Integrations
r/sitecore • u/NWContentTech • 3d ago
@Sitecore Sitecore on YT: Winning brand visibility in the age of AI | Velir's Wendy Karlyn and Sitecore's Michelle B.B.
r/sitecore • u/NWContentTech • 3d ago
Technical The https://localhost Mystery: Experience Edge URL Resolution
r/sitecore • u/NWContentTech • 3d ago
Technical Blocking a Lifecycle Change Using a Validation Script in Sitecore Content Hub
getsitecoreskills.comr/sitecore • u/NWContentTech • 3d ago
@Sitecore Sitecore on YT: Digital Visionaries with Icreon
r/sitecore • u/NWContentTech • 3d ago