How to hide the page footer in Exploratory Server (On-Premise)

In Exploratory Server version 11, you can hide the page footer on each page. The configuration method is as follows.

1. Modifying the On-Premise Server Configuration File

Open the docker-compose.yml file located directly under the “exploratory” directory and add the following line under the environment section of the exploratory category:

- EXPL_SHOW_PAGE_FOOTER=false

Example:

  exploratory:
    image: exploratory:11.2.1
    environment:
               :
        (Other settings)
               :
      - EXPL_SHOW_PAGE_FOOTER=false

2. Restarting the On-Premise Server

After making the changes, restart the Exploratory server:

docker-compose down
docker-compose up -d

Once the restart is complete, access the on-premise server from your browser and verify that the footer is no longer displayed.