• Resolved dominikkucharski

    (@dominikkucharski)


    Hi

    When you enable Flexible field edit screen in the popup/lightbox and press Enter in the textarea field it closes the popup/lightbox. It’s impossible to break sentence to a few lines. As far as I can see it works well in the WYSIWYG field.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Thanks for the report! Yeah you’re right, I haven’t tested it on a textarea fields. Here is a quickfix to remove the enter key closing the modal. I will add it in the next patch (very soon):

    In the file: acf-extended\assets\acf-extended.js line:77, find:

    if((e.keyCode != 27 && e.keyCode != 13) || !$('body').hasClass('acfe-modal-opened'))

    Replace this line by this one:

    if((e.keyCode != 27) || !$('body').hasClass('acfe-modal-opened'))

    Note: the echap key (code: 27) will still close the modal.

    Sorry for the inconvenience!

    Regards.

    Thread Starter dominikkucharski

    (@dominikkucharski)

    Hello

    Thanks for the solution ??

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    The new ACF Extended 0.7.9.9 update is available as pre-release on Github (soon on the WP repository): https://github.com/acf-extended/ACF-Extended

    It includes the fix for your report ??

    Havce a nice day!

    Regards.

    Thread Starter dominikkucharski

    (@dominikkucharski)

    Thank you!

    Plugin Author Konrad Chmielewski

    (@hwk-fr)

    Hello,

    Just to let you know that the latest ACF Extended 0.7.9.9.8 version fix this problem. You can download it from the official WP Repository.

    Thanks again for the report!

    Regards.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Enter in textarea field closes modal with edit screen’ is closed to new replies.