• Hi

    I have an issue in mobile view with you plugin. for desktop it’s working fine but when we comes to mobile view or tablet view. it calling unwanted ajax call which create a issue in UI. we focus on the search box then it focus out from it. if we change the option from select box it’s disappear the box.

    Please check and let us know how to resolve it.

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter subashbist123

    (@subashbist123)

    Hi Anyone having similar problem related to above mention issue. Please suggest any idea to tackle this problem.

    Thanks

    Plugin Author Darren Cooney

    (@dcooney)

    Hi @subashbist123

    This is because of the following CSS in your theme.
    .alm-btn-wrap { display: none !important; }

    Try removing that or setting it to
    .alm-btn-wrap { opacity: 0; visibility: hidden; height: 1px; }

    Let me know if this helps!

    Thread Starter subashbist123

    (@subashbist123)

    Hi @dcooney

    I got this and it’s solving the keyboard disappearing issue but i tried this css .alm-btn-wrap { opacity: 0; visibility: hidden; height: 1px; } not working. When we scroll down in mobile section waiting for the next post batch till than it’s does not allow to scroll more bottom of the screen and fluctuate whole screen. Do you have another way to remove load more button?

    If i remove the whole section using code

    jQuery(document).ready(function ($) {
    $('.alm-btn-wrap').remove(); // Removes the Load More button container from the DOM
    });

    then keyboard disappearing issue occurs in mobile that’s means we have to keep the dom for .alm-btn-wrap but looking for the fluctuation issue.

    Shortcode i am using currently:
    echo do_shortcode('[ajax_load_more ransition_delay="1" loading_style="infinite classic" container_type="div" post_type="deal" posts_per_page="30" scroll_distance="-600" order="DESC" mages_loaded="true" ]');

    Plugin Author Darren Cooney

    (@dcooney)

    @subashbist123 I’m honestly not seeing an issue on mobile. Can you please explain exactly what I need to be looking for?

    The fix I gave you fixed an issue were ajax calls were dispatching after every scroll action, so that looks good now.

    Thread Starter subashbist123

    (@subashbist123)

    Ohh i see it’s working fine on Iphone mobiles but on andriod you will the fluctuation of the screen on bottom of page. let check i can provide you video.

Viewing 5 replies - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.