This article explains how to manually get preview links to work if the auto-generated link won't do anything.
You can generate preview links using the Web Editor, or from the Manager.
Evolv’s preview link functionality uses a session storage token that tells the browser which project variants to render. If the token doesn’t save, for whatever reason, here’s something you can try.
Option #1: Use the console (all browsers)
- Open Dev tools.
- Go to the Console.
- Enter the following into the console and press enter.
- Where {token_id} is the actual token.
sessionStorage.setItem('evolv:candidateToken','{token_id}'); location.reload();
The browser will automatically reload with the new token in place.
Option #2: Manually add the token to session storage (Chrome)
- Open Dev tools.
- Go to the Application tab.
- Open Session Storage on the left and select the required website.
- Enter a new session storage key named evolv:candidateToken.
- Add the preview token ID as the value.
- The token is the string of characters after the Evolv token name in the preview URL
- Reload the test page.
- Update the token value when you want to test a new preview link.