Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author YITHEMES

    (@yithemes)

    Hi,
    I’ve just tried the demo site with mobile device ( windows phone 10 and android 5 ), and it works good. With which device have you tried?

    You need to add some custom css code for let quick view works with mobile device. Something like this

    .yith-wcqv-wrapper {
    width: 325px;
        height: 450px;
        overflow-y: scroll;
    }

    Best regards 🙂

    Thread Starter joelurrea

    (@joelurrea)

    Perfect, now it’s working good… but on desktop it’s looks like mobile…

    I added this custom css and works great in all devices:

    @media screen and (max-width: 768px){
      .yith-wcqv-wrapper {
        width: 325px;
        height: 450px;
        overflow-y: scroll;
    }
    }

    Thanks for your help!

    I put the code in the css but still I am getting black screen on clicking the quick view on mobile devices

    Adding below code into plugin css works for me, add at the end of the file.

    Thanks joelurrea

    yith-quick-view.css

    @media screen and (max-width: 768px){
    .yith-wcqv-wrapper {
    width: 325px;
    height: 450px;
    overflow-y: scroll;
    }
    }

    Adding the below code to the Custom CSS solved the problem for me also.

    @media screen and (max-width: 768px){
    .yith-wcqv-wrapper {
    width: 325px;
    height: 450px;
    overflow-y: scroll;
    }
    }

    That didn’t work for me. I use storefront theme. Also I am not able to disable the feature in tablets.

    Plugin Author YITHEMES

    (@yithemes)

    Hi,
    have you tried to add the css suggested in previous reply on your custom style? It should work!
    If not, please if possible, add a link of your site so I can check it directly!

    Regards 🙂

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘This plugin doesn't work in mobile devices’ is closed to new replies.