• This version fixes a bug that could cause compatibility issues in class extensions with other add-ons.
  • Please apply if you are using any older version of this package.
  • Thanks to @Xon for highlighting the issue and the solution.
  • Like
Reactions: Lovester
  • 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>
Back
Top Bottom