---
title: "How can I disable the PageAssist hotkeys?"
date: "2025-02-26T18:02:38+00:00"
summary: "Learn how to disable PageAssist hotkeys for websites with live edit mode. Step-by-step guide to modify the script."
image:
type: "article"
url: "/web-governance/help/61671-how-can-i-disable-pageassist-hotkeys"
id: "07dcb553-8f56-489d-ae02-0ca136c6ec2c"
---

How to disable PageAssist hotkeys
---------------------------------

Sometimes websites have a live edit mode and when they use the shift+o with PageAssist enabled, it will open up PageAssist.

To disable the hotkey, manually add the parameter _hotkeyEnabled: false_, to the PageAssist script. See the example below where it has been added at the bottom of the script.

    <script type="text/javascript">
    
        window._monsido = window._monsido || {
    
            token: "dfgdfgdfgdfgnvbc",
    
            heatmap: {
    
                enabled: true,
    
            },
    
            pageAssistV2: {
    
                enabled: true,
    
                theme: "light",
    
                mainColor: "#783CE2",
    
                textColor: "#ffffff",
    
                linkColor: "#783CE2",
    
                buttonHoverColor: "#783CE2",
    
                mainDarkColor: "#052942",
    
                textDarkColor: "#ffffff",
    
                linkColorDark: "#FFCF4B",
    
                buttonHoverDarkColor: "#FFCF4B",
    
                greeting: "Discover your personalization options",
    
                direction: "leftbottom",
    
                coordinates: "undefined undefined undefined undefined",
    
                iconShape: "circle",
    
                title: "Personalization Options",
    
                titleText: "Welcome to PageAssist™ toolbar! Adjust the options below to cater the website to your accessibility needs.",
    
                iconPictureUrl: "logo",
    
                logoPictureUrl: "",
    
                logoPictureBase64: "",
    
                languages: [""],
    
                defaultLanguage: "",
    
                skipTo: false,
    
                alwaysOnTop: false,
    
                hotkeyEnabled: false,
    
            },

For more instructions on advanced PageAssist configuration, see the user guide article:

[PageAssist advanced configuration](https://docs.acquia.com/acquia-optimize/docs/admin/pageassist-setup/advanced-configuration).