There will be updates but due to terrible timing, I'm unable to push updates out until next week. I'm out of town for the next few days.


I upgraded our development forum, there's a single change in the template if anyone really needs to do the upgrade and wants to fix the outdated template.
Template: PAGE_CONTAINER

Find: (line 28)
Code:
    <xf:if is="$xf.style.isVariationsEnabled()">
        <xf:if is="$xf.visitor.style_variation">
            <meta name="theme-color" content="{{ parse_less_color(property_variation('metaThemeColor', $xf.visitor.style_variation)) }}" />
        <xf:else />
            <xf:if is="$xf.style.hasAlternateStyleTypeVariation()">
                <meta name="theme-color" media="(prefers-color-scheme: {{ $xf.style.getDefaultStyleType() }})" content="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" />
                <meta name="theme-color" media="(prefers-color-scheme: {{ $xf.style.getAlternateStyleType() }})" content="{{ parse_less_color(property_variation('metaThemeColor', $xf.style.getAlternateStyleTypeVariation())) }}" />
            <xf:else />
                <meta name="theme-color" content="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" />
            </xf:if>
        </xf:if>
    <xf:else />
        <meta name="theme-color" content="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" />
    </xf:if>

Replace with:

Code:
    <xf:macro id="theme_color_meta" arg-color="!" arg-media="">
        <xf:if is="$color">
            <meta name="theme-color"{{ $media ? ' media="' . $media . '"' : '' }} content="{$color}" />
        </xf:if>
    </xf:macro>

    <xf:if is="$xf.style.isVariationsEnabled()">
        <xf:if is="$xf.visitor.style_variation">
            <xf:macro id="theme_color_meta" arg-color="{{ parse_less_color(property_variation('metaThemeColor', $xf.visitor.style_variation)) }}" />
        <xf:else />
            <xf:if is="$xf.style.hasAlternateStyleTypeVariation()">
                <xf:macro id="theme_color_meta" arg-color="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" arg-media="(prefers-color-scheme: {{ $xf.style.getDefaultStyleType() }})" />
                <xf:macro id="theme_color_meta" arg-color="{{ parse_less_color(property_variation('metaThemeColor', $xf.style.getAlternateStyleTypeVariation())) }}" arg-media="(prefers-color-scheme: {{ $xf.style.getAlternateStyleType() }})" />
            <xf:else />
                <xf:macro id="theme_color_meta" arg-color="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" />
            </xf:if>
        </xf:if>
    <xf:else />
        <xf:macro id="theme_color_meta" arg-color="{{ parse_less_color(property_variation('metaThemeColor', 'default')) }}" />
    </xf:if>

That's it, the only change in all of our templates.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back