thanks @John Siciliano! I have a follow up question about dynamic pages and variables.
Scenario:
- I have baseline static pages (e.g. /productX and /productx/detail-page)
- I want to use a dynamic version of specific baseline pages that I use to create N number of personalized versions of that baseline page
- I want the dynamic version to exist at /baseline-version/{customized-version-slug}
- eg. /productx/{custom-slug} or productx/detail-page/{customized-version-slug}
- AND if there is no dynamic version at /page/{customized-version-slug} to automatically redirect back to the correct baseline page rather than a 404 page
I'm open to a simpler approach that gets the same outcome. My concern about variables instead of dynamic pages:
- The flash of unstyled text or slow page loads if the CRM API is slow
- For my use case, pre-built custom pages at specific urls makes more sense than customizing a persistent page.
Thanks to your excellent tutorial videos, I've figured out how to create dynamic pages even though I know little about code, but the above is beyond my level.