London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Hello,
Would you want to try <add key="DisableVersionSync" value="false" /> in your app settings and see if that reflects the update accurately?
~ Sujit
Hi,
We are updating a page in Optimisely through code like this -
ProfilePage profilePage = existingProfilePage.CreateWritableClone() as ProfilePage
profilePage.URLSegment = urlSegment;
profilePage.FirstName = profileForm.FirstName ?? string.Empty;
profilePage.LastName = profileForm.LastName ?? string.Empty;
//Setting the page to draft mode
profilePageId = _contentRepository.Save(profilePage, SaveAction.CheckOut, AccessLevel.NoAccess).ID
But when we are saving the page in draft mode, the url segment and page name is not updating.
How can I update the url segment and page name keeping the page in draft state itself?
We are currently using Episerver CMS - v11.20.5
Thanks!