Home Forums WoodMart support forum Quick buy mobile

Quick buy mobile

Viewing 20 posts - 1 through 20 (of 20 total)
  • Author
    Posts
  • #46213

    jukka18
    Participant

    Hi there,

    Can we turn off the quick buy option on mobile? Client is finding it very sensitive. Great on desktop.

    Also the search drop down is proving very sensitive, is there a way of once opened it stays open until you search?

    Thanks

    W

    #46248

    Hello,

    Unfortunately, there are no options for that. “Quick Shop” for variable products is set for all devices and can’t be disabled for some particular devices only. It is not possible to achieve with custom CSS coding as well.

    The search drop-down is opened on mouse hover and closed when the mouse is taken away. There are no options to change either this.

    Best Regards

    #46250

    jukka18
    Participant

    See PC

    #46251

    Artem Temos
    Keymaster

    We can give you a code to hide the “add to cart” button if the quick shop function is not good for you.

    As for the search, it is how the browser works in general, what exactly can we do here? What do you mean by less sensitive?

    #46255

    jukka18
    Participant

    The client just needs the QuickBuy/Add to cart to disappear on mobile. Is it possible to have the quickbuy disappear on devices with a specific snmall screen size so covering mobiles for example.

    Also the search, the client says they are finding it difficult, as it often disappears on the slightest movement. They were hoping it could stay open and you either have to click to close or won’t disappear until you have actioned a search?

    Any help would be much great!!!! Were close to launching and the client is desperate to get these issues ironed out.

    We really appreciate any help you can give!!!!!

    #46256

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom CSS area for mobile devices only in Theme Settings

    .woodmart-add-btn {
    	display: none;
    }

    And try to use full screen search in Theme Settings -> Header -> Search.

    #46332

    jukka18
    Participant

    Great thanks for that.

    Can we stop the product actually popping up with the information – weight/dimensions etc as you scroll on mobile. so the only action when you click the image is it takes you to the product page.

    #46368

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom JS area in Theme Settings to do this

    if( jQuery(window).width() <= 1024 ) {
       jQuery('.woodmart-hover-base').unbind('click');
    }
    #46388

    jukka18
    Participant

    Hi Artem,

    I did this in the global JS and it seemed to stop most of the images appearing on the front page?

    I removed and it came back?

    #46389

    Artem Temos
    Keymaster

    Could you please add it back so we can test in your website and see why it doesn’t work?

    #46392

    jukka18
    Participant

    I’ve done that now.

    #46394

    Artem Temos
    Keymaster

    Please, disable all optimizations plugin to see it.

    #46395

    jukka18
    Participant

    So this can’t be achieved with optimisation in place?

    #46396

    Artem Temos
    Keymaster

    We can’t say right now. Currently, we see some syntax error in optimized JS files. That is why you need to disable it first, to understand which file causes this error.

    #46398

    jukka18
    Participant

    Hi there,

    I’ve turned the optimisation off and dropped in the code. The boxes with weight | dimensions etc are still popping up on scroll on mobile?

    #46421

    Artem Temos
    Keymaster

    Try to add the following code snippet to the Custom CSS area in Theme Settings

    div.woodmart-hover-base.hover-ready.state-hover, 
    div.woodmart-hover-base.hover-ready:hover {
      -webkit-transform: none;
      transform: none;
    }
    
    div.woodmart-hover-base .content-product-imagin,
    .woodmart-hover-base .fade-in-block {
       display:none;
    }
    #46445

    jukka18
    Participant

    Perfect, thanks for all your help!

    #46457

    Artem Temos
    Keymaster

    Great, you are welcome!

    #46459

    jukka18
    Participant

    Brilliant customer service – as always.

    #46463

    Artem Temos
    Keymaster

    Thank you 🙂

Viewing 20 posts - 1 through 20 (of 20 total)

The topic ‘Quick buy mobile’ is closed to new replies.