Skip to main content
Version: 1.1.4.1

Block Screen

Overview

This is the screen displayed to blocked users. You can customize it using Easy editing or Code Editing.

The editing screen consists of the following:

  • Title: You can enter up to 50 characters. Set a clear name for easy identification in the list.
    • After entering the title, you must click [Confirm] to save it.
  • Preview: Select [Exit Editing] or [Full View] to expand and view it.
  • Edit: You can adjust it using the console's [Easy editing] or [Editor].

Easy editing



Easy editing consists of the following:

  • Default Language: Set the default language to be applied in environments that do not support multilingual settings.
  • Language Settings: When enabled, you can customize phrases for each language. Currently available languages are Korean, Japanese, and English.
  • Background Image
  • Top Image
  • Title: The phrase to be displayed on the block screen.
  • Content: Detailed information to be displayed below the title.
  • Page Navigation Button: You can set the path (URL) to navigate to after closing the block screen and the button name to be displayed on the button.
    • If you do not specify a URL to navigate to after enabling the button, clicking it will navigate to the user's [previous page].
  • Block Reason Code: You can set whether to display the block reason code.
    • When inquiries or claims related to blocking occur, you can respond more accurately based on this code.
  • Favicon: You can set the favicon to be displayed in the browser tab when the block screen is displayed.
  • Footer: You can set the content of the footer area to be displayed at the bottom of the block screen.

Editor

Editor allows for detailed customization through code editing. Values specified in Easy editing are automatically reflected in the code.

warning

The multilingual configuration can be found at the bottom of the code as shown below.

  window.__bm_config__ = {
"translations": {
"en": {
"title": "Access Denied",
"pageTitle": "Access Denied",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "You cannot access this service from your device.",
"submitButtonText": "",
"redirectButtonText": "Go Back"
},
"ja": {
"title": "アクセス拒否",
"pageTitle": "アクセス拒否",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "現在ご利用のデバイスからはサービスをご利用いただけません。",
"submitButtonText": "",
"redirectButtonText": "前のページへ戻る"
},
"ko": {
"title": "서비스 접속 차단",
"pageTitle": "서비스 접속 차단",
"footerText": "Powered by STCLab | © STCLab Inc.",
"description": "현재 접속하신 단말에서는 접속이 불가능합니다.",
"submitButtonText": "",
"redirectButtonText": "이전으로 돌아가기"
}
},
"defaultLang": "ko",
"redirectUrl": "https://example.com",
"multiLanguageEnabled": true
};

When configuring, modify only the text values to ensure the block screen displays correctly, and do not change or delete other script code.