diff --git a/docs/install/subscription-page/bundled.md b/docs/install/subscription-page/bundled.md
index 4866ce0..260dd52 100644
--- a/docs/install/subscription-page/bundled.md
+++ b/docs/install/subscription-page/bundled.md
@@ -79,6 +79,11 @@ REMNAWAVE_PANEL_URL=https://panel.example.com
META_TITLE="Subscription page"
META_DESCRIPTION="Subscription page description"
+# If you want to display raw keys in the subscription page, set this to true.
+# Please note, this setting will not have any effect if you have HWID enabled.
+SUBSCRIPTION_UI_DISPLAY_RAW_KEYS=false
+
+
# Serve at custom root path, for example, this value can be: CUSTOM_SUB_PREFIX=sub
# Do not place / at the start/end
diff --git a/docs/install/subscription-page/display-raw-keys.md b/docs/install/subscription-page/display-raw-keys.md
new file mode 100644
index 0000000..89ede89
--- /dev/null
+++ b/docs/install/subscription-page/display-raw-keys.md
@@ -0,0 +1,48 @@
+---
+sidebar_position: 4
+title: Display Raw Keys
+---
+
+
+
+:::warning
+
+This setting will not have any effect if you have HWID enabled.
+:::
+
+If you want to display raw keys in the subscription page, you can set the `SUBSCRIPTION_UI_DISPLAY_RAW_KEYS` variable to `true` in the `.env` file.
+
+```bash title=".env file"
+cd /opt/remnawave/subscription && nano .env
+```
+
+```bash title=".env file content"
+
+SUBSCRIPTION_UI_DISPLAY_RAW_KEYS=true
+```
+
+Restart the subscription page container to apply the changes.
+
+```bash
+cd /opt/remnawave/subscription && docker compose down && docker compose up -d && docker compose logs -f
+```
+
+### Disable Display Raw Keys {#disable-display-raw-keys}
+
+If you want to disable displaying raw keys in the subscription page, you can set the `SUBSCRIPTION_UI_DISPLAY_RAW_KEYS` variable to `false` in the `.env` file.
+
+```bash title=".env file"
+cd /opt/remnawave/subscription && nano .env
+```
+
+```bash
+SUBSCRIPTION_UI_DISPLAY_RAW_KEYS=false
+```
+
+### Restart the subscription page container {#restart-subscription-page-container}
+
+Restart the subscription page container to apply the changes.
+
+```bash
+cd /opt/remnawave/subscription && docker compose down && docker compose up -d && docker compose logs -f
+```
diff --git a/docs/install/subscription-page/index.md b/docs/install/subscription-page/index.md
index a9b9e63..d0da9fb 100644
--- a/docs/install/subscription-page/index.md
+++ b/docs/install/subscription-page/index.md
@@ -27,9 +27,7 @@ import {useCurrentSidebarCategory} from '@docusaurus/theme-common';
After you install subscription page, you can customize it by following the guide below.
```mdx-code-block
-import DocCard from '@theme/DocCard';
-
+i>=useCurrentSidebarCategory().items.length-2?_:null).filter(Boolean)]} />
+
```
diff --git a/static/install/subscription-page-display-raw-keys.webp b/static/install/subscription-page-display-raw-keys.webp
new file mode 100644
index 0000000..cc34f66
Binary files /dev/null and b/static/install/subscription-page-display-raw-keys.webp differ