• The images generated in the cart are not correct it generates a perfect image below everything and puts other stuff on it (like shown in picture) in cart and checkout it works fine. How do I fix that?

    Another question is it possible to change the configurator size on mobile devices because it is to small I would like to have it for the configuration part to be 50% of the screen height?

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lukson2k1

    (@lukson2k1)

    Ok so the images in the cart can be partially fixed with:

    .choice-thumb img {
        display: none;
    }

    but I don’t know is there is a better way of doing this, because this removes thumbnails from the cart if you click View Cart, and if I do this way the images are not centered in the cart?

    • This reply was modified 8 months, 2 weeks ago by lukson2k1.
    Thread Starter lukson2k1

    (@lukson2k1)

    and is it possible that the configurator auto opens when a customer clicks on a product?

    Plugin Contributor Marc Lacroix

    (@marcusig)

    Hi there,
    sorry for the delay in responding, I thought I replied but obviously my answer wasn’t sent.

    Here’s some CSS to fix those few things:

    /* Hide the thumbnail only in the mini-cart */
    .widget_shopping_cart .cart_list li span.choice-thumb {
        display: none;
    }
    
    /* remove extra spacing */
    .widget_shopping_cart dd.variation-Configuration {
        margin: 0;
    }
    
    /* Change proportions on mobile */
    @media(max-width: 660px) {
        .mkl_pc .mkl_pc_container .mkl_pc_viewer {
            bottom: 50%;
        }
        
        .mkl_pc .mkl_pc_container .mkl_pc_toolbar {
            top: 50%;
        }
    }

    and is it possible that the configurator auto opens when a customer clicks on a product?

    You can do so by adding open_configurator=1 to the url. E.g. https://www.modwatch.eu/product/nautilus-custom-craft/?open_configurator=1

    Marc

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Thumbnail In The Cart Not Generated Correctly’ is closed to new replies.