Skip to content

Version Number

When customers report issues, first question is about which version they are using. For many it is hard to find out. That's the reason why we console.log the current library's version number in console-tab of the browser's development tools.

Note

This will only be displayed in dev-console on localhost (localhost, 127.0.0.1) but not in your server-production environment.

Please remember this information is important for us when trying to help you finding and fixing bugs.

How to hide version information

Anyway, if you don't want to see it - not even as developer in localhost environment, you can disable it by defining a javascript constant like this:

1
2
3
4
5
6
<!-- file: hooks/header-extras.php -->
<script>
    const AppGiniHelperHideVersionInformation = true;
</script>

<script src="hooks/AppGiniHelper.min.js"></script>

Warning

It is important to define that constant before including the AppGiniHelper.min.js-script.