Version works on stage, but is broken on production
We just made a version live on production, only to discover that it was displaying incorrectly (all content smushed into one column on the right), so we quickly reverted.
We're now troubleshooting what it could be. Does anyone know why display would be different on stage and production? What are a list of things to double check if things are displaying differently on stage vs. production?
Thanks!
Alan
Thanks to you both. I checked http/https and resources loading. Turned out the issue was with a custom component where a variable didn't exist.
<#if role.name?? && (role.name == "Administrator" || role.name == "Moderator" || role.name == "Moderator2" || role.name == "Analytics")>
<#assign is_user_admin = true />
</#if><#if is_user_admin = true />
<#-- do things -->
</if>
It was fixed when I added this line above the first <#if> statement:
<#assign is_user_admin = false />