Russ
Pixel Exit Staff
I'm pushing updates out shortly, but if you'd like to update your templates ahead of time, you can edit the outdated style:
Inside the PAGE_CONTAINER template
Find (around line 29 or so)
Replace with:
Click SAVE AND EXIT.
That will update the template so it won't show outdated. Official updates will be out shortly.
Inside the PAGE_CONTAINER template
Find (around line 29 or so)
Code:
<xf:if is="property('publicIconUrl')">
<link rel="apple-touch-icon" href="{{ base_url(property('publicIconUrl', true)) }}">
</xf:if>
Replace with:
Code:
<xf:if is="property('publicIconUrl')">
<link rel="apple-touch-icon" href="{{ base_url(property('publicIconUrl', true)) }}">
<xf:elseif is="property('publicMetadataLogoUrl')" />
<link rel="apple-touch-icon" href="{{ base_url(property('publicMetadataLogoUrl')) }}" />
</xf:if>
That will update the template so it won't show outdated. Official updates will be out shortly.