Skip to main content
All CollectionsCopilot HelpNative
Preview for Branded Content on Verso
Preview for Branded Content on Verso

If you're working in the Branded environment you may have trouble using the Preview function for some brands

Vijay Krishna Mallik avatar
Written by Vijay Krishna Mallik
Updated over a week ago

As Condé Nast migrates its brands onto the new front-end experience, Verso, you may have difficulty previewing Branded content on brands already transitioned onto Verso for their articles and galleries. If you experience an error page while trying to use Preview in the Branded Copilot environment there are two workarounds you can use.

The first is to copy the Preview URL and add &verso=false to the end of the slug. 

The second way is to add an html bookmark to your Chrome browser that will automatically generate the correct Preview url. To add this bookmark: Open Bookmarks and open the Bookmarks Manager. Click the three dots in the upper right corner, then Add a New Bookmark, and paste in the following code:

javascript: (function () {
  var url = $('.url-field p').text();
  var preview = $('.preview-area'); 

  if(url.indexOf('branded=true') > -1) {
   url = url + '&verso=false';
   window.location.href = url;
  }
})()

Once the new bookmark is added, if a page you are attempting to Preview displays a 404 error, click the bookmark and the &verso=false working Preview page will be opened automatically.

If you have any issues or questions with this feature feel free to reach out using the Copilot Chat Bubble.

Did this answer your question?