• Resolved scazzino

    (@scazzino)


    Anyone else having this issue? I can’t type the ‘n’ key in any form fields in the backend if Jetpack is installed and connected. When Jetpack is installed and connected it puts a Notifications icon in the WordPress admin bar. Normally when no field has focus pressing the ‘n’ key opens the notification popup menu. Most other plugins that have fields in the backend capture the ‘n’ key if typed in a field that has focus rather than letting the Jetpack notifications menu grab the key. But for some reason when using Icegram Express and trying to edit a field, text or label in the form builder in the backend, typing an ‘n’ anywhere in there just opens/closes the Jetpack notification menu, rather than passing the ‘n’ to the field, text or label being edited… Instead I have to type the text in a text editor and copy/paste it into the field, text or label in the form editor.

    WP 6.4.1, Icegram Engage 3.1.18, Jetpack 12.8.1?

    • This topic was modified 1 year ago by scazzino.
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Shubhanshu Kandani

    (@shubhanshukandani)

    Hi @scazzino,

    Thank you for reaching out! We are pleased to assist you.

    You can use the below code to fix the above-mentioned issue.

    // Function to dequeue Jetpack scripts on Express admin pages function express_custom_code_exclude_jetpack_scripts()
    {
    // Check if it's the Express admin page if ( function_exists( 'ES' ) && ES()->is_es_admin_screen() ) { wp_dequeue_script('wpcom-notes-admin-bar');
    }
    }
    add_action('admin_footer', 'express_custom_code_exclude_jetpack_scripts', 99);

    Let me know how it goes on your site.

    Thanks a lot!

    Plugin Contributor Shubhanshu Kandani

    (@shubhanshukandani)

    Hi @scazzino,

    I trust the solution provided earlier proved helpful. If not, we’ve successfully addressed the mentioned issue. Kindly proceed to update the plugin with the latest release.

    Cheers!

    Thread Starter scazzino

    (@scazzino)

    Great thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can’t type ‘n’ key in any form fields in backend if Jetpack connected.’ is closed to new replies.