Android ScrollView doesn't scroll when the keyboard is up

Home Forums Legacy Support Support queries Setup issues Android ScrollView doesn't scroll when the keyboard is up

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #230340
    futureyoon_208
    Participant
    Hi, this issue seems to happen to only Android: layout on ajax login cannot be scrolled when keyboard is up. I have checked almost similar issue from previous tickets like https://wplms.io/support/forums/topic/mobile-keyboard-covering-popup-login/https://wplms.io/support/forums/topic/full-screen-login-window-on-the-mobile/, but they don't seem to fix my issue. Could you help to check? Thanks!
    #230440
    logan
    Member
    Hello, please share some stills with the url.
    #230446
    futureyoon_208
    Participant
    This reply has been marked as private.
    #230547
    logan
    Member
    Hello, try this code in wp-admin >> wplms >> footer >> google analytics. <script> function move_popup(){   if(jQuery(window).width() < 700){ jQuery('input#side-user-login,input#sidebar-user-pass').on('blur',function(){ jQuery('.fullscreen_login form#vbp-login-form').css('margin','120px auto 0'); }); jQuery('input#side-user-login,input#sidebar-user-pass').on('focus',function(){ jQuery('.fullscreen_login form#vbp-login-form').css('margin','0'); }); } } jQuery(document).ready(function(){ move_popup(); jQuery( window ).resize(function() { move_popup(); }); }); </script>
    #230730
    futureyoon_208
    Participant
    This reply has been marked as private.
    #230922
    logan
    Member

    Hello,

    try this code in wp-admin >> wplms >> footer >> google analytics. <script> function move_popup(){ if(jQuery(window).width() < 700){ jQuery('input#side-user-login,input#sidebar-user-pass').on('blur',function(){ jQuery('.fullscreen_login form#vbp-login-form').css('overflow-y','scroll'); }); jQuery('input#side-user-login,input#sidebar-user-pass').on('focus',function(){ jQuery('.fullscreen_login form#vbp-login-form').css('overflow-y','auto'); }); } } jQuery(document).ready(function(){ move_popup(); jQuery( window ).resize(function() { move_popup(); }); }); </script>
    #231015
    futureyoon_208
    Participant
    Hi, it doesn't work 😅
    #231136
    logan
    Member

    Hello,

    Try this code in wp-admin >> wplms >> footer >> google analytics.

    <script>

    function move_popup(){

    if(jQuery(window).width() < 700){

    jQuery('input#side-user-login,input#sidebar-user-pass').on('blur',function(){

    jQuery('.fullscreen_login form#vbp-login-form').css('overflow-y','scroll');

    });

    jQuery('input#side-user-login,input#sidebar-user-pass').on('focus',function(){

    jQuery('.fullscreen_login form#vbp-login-form').css('overflow-y','scroll');

    });

    }

    }

    jQuery(document).ready(function(){

    move_popup();

    jQuery( window ).resize(function() {

    move_popup();

    });

    });

    </script>

    #231735
    Diana
    Participant
    @futureyoon_208 Can you please ping me here tomorrow. I need to check the same on both the devices. Will check if this is an issue with our demos as well or not. Only then I can share any custom code with you
    #231875
    Diana
    Participant
    Please continue on email  
Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Android ScrollView doesn't scroll when the keyboard is up’ is closed to new replies.