• Admin panel pages support for code editor fields. Please apply if any of your products require this version.
This version adds the library Mobile_Detect and adds variables available in all templates to detect if the current page is viewed on a mobile/tablet device:
Code:
<xf:if is="$xf.isMobileBrowser">
    Visitor is using a tablet or a phone.
    <xf:if is="$xf.isTabletBrowser">
      Visitor is using a tablet.
    <xf:else />
      Visitor is using a phone.
    </xf:if>
  <xf:else />
    Visitor is using a computer/non-mobile device.
</xf:if>
  • This version adds CSV file parser library. Upgrade if an add-on you are using requires this version.
Back
Top Bottom